[cfe-commits] r72063 - in /cfe/trunk: lib/Frontend/CMakeLists.txt tools/clang-cc/CMakeLists.txt
Eli Friedman
eli.friedman at gmail.com
Mon May 18 16:06:15 PDT 2009
Author: efriedma
Date: Mon May 18 18:06:15 2009
New Revision: 72063
URL: http://llvm.org/viewvc/llvm-project?rev=72063&view=rev
Log:
Attempted CMake build fixes for r72060; this is untested, so please tell
me if there are any issues.
Modified:
cfe/trunk/lib/Frontend/CMakeLists.txt
cfe/trunk/tools/clang-cc/CMakeLists.txt
Modified: cfe/trunk/lib/Frontend/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/CMakeLists.txt?rev=72063&r1=72062&r2=72063&view=diff
==============================================================================
--- cfe/trunk/lib/Frontend/CMakeLists.txt (original)
+++ cfe/trunk/lib/Frontend/CMakeLists.txt Mon May 18 18:06:15 2009
@@ -1,8 +1,12 @@
set(LLVM_NO_RTTI 1)
add_clang_library(clangFrontend
+ ASTConsumers.cpp
+ Backend.cpp
FixItRewriter.cpp
+ GeneratePCH.cpp
HTMLDiagnostics.cpp
+ HTMLPrint.cpp
InitHeaderSearch.cpp
InitPreprocessor.cpp
TextDiagnosticBuffer.cpp
@@ -14,5 +18,7 @@
PCHWriterDecl.cpp
PCHWriterStmt.cpp
PlistDiagnostics.cpp
+ RewriteBlocks.cpp
+ RewriteObjC.cpp
ManagerRegistry.cpp
)
Modified: cfe/trunk/tools/clang-cc/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/clang-cc/CMakeLists.txt?rev=72063&r1=72062&r2=72063&view=diff
==============================================================================
--- cfe/trunk/tools/clang-cc/CMakeLists.txt (original)
+++ cfe/trunk/tools/clang-cc/CMakeLists.txt Mon May 18 18:06:15 2009
@@ -1,11 +1,11 @@
set(LLVM_NO_RTTI 1)
set( LLVM_USED_LIBS
+ clangFrontend
clangCodeGen
clangAnalysis
clangRewrite
clangSema
- clangFrontend
clangAST
clangParse
clangLex
@@ -23,19 +23,13 @@
add_clang_executable(clang-cc
AnalysisConsumer.cpp
- ASTConsumers.cpp
- Backend.cpp
CacheTokens.cpp
clang-cc.cpp
DependencyFile.cpp
DiagChecker.cpp
- GeneratePCH.cpp
- HTMLPrint.cpp
PrintParserCallbacks.cpp
PrintPreprocessedOutput.cpp
- RewriteBlocks.cpp
RewriteMacros.cpp
- RewriteObjC.cpp
RewriteTest.cpp
Warnings.cpp
)
More information about the cfe-commits
mailing list