diff options
-rw-r--r-- | lib/Frontend/CMakeLists.txt | 6 | ||||
-rw-r--r-- | tools/clang-cc/CMakeLists.txt | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/Frontend/CMakeLists.txt b/lib/Frontend/CMakeLists.txt index 047314649f..807b469b75 100644 --- a/lib/Frontend/CMakeLists.txt +++ b/lib/Frontend/CMakeLists.txt @@ -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 @@ add_clang_library(clangFrontend PCHWriterDecl.cpp PCHWriterStmt.cpp PlistDiagnostics.cpp + RewriteBlocks.cpp + RewriteObjC.cpp ManagerRegistry.cpp ) diff --git a/tools/clang-cc/CMakeLists.txt b/tools/clang-cc/CMakeLists.txt index 4ebebb74f5..9029c0a247 100644 --- a/tools/clang-cc/CMakeLists.txt +++ b/tools/clang-cc/CMakeLists.txt @@ -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 @@ set( LLVM_LINK_COMPONENTS 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 ) |