diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-05-19 04:21:30 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-05-19 04:21:30 +0000 |
commit | e15ecf04a4a10b438ea613845a2ff1cc135033de (patch) | |
tree | f57830d14151f6c85d865dbc05a8312ef10f87dd | |
parent | 16b7b6f51120c0034004b55e7485142110f4ccd1 (diff) | |
download | bcm5719-llvm-e15ecf04a4a10b438ea613845a2ff1cc135033de.tar.gz bcm5719-llvm-e15ecf04a4a10b438ea613845a2ff1cc135033de.zip |
CMake updates for r72099; untested, so please tell me if there are any
issues.
llvm-svn: 72100
-rw-r--r-- | clang/lib/Frontend/CMakeLists.txt | 14 | ||||
-rw-r--r-- | clang/tools/clang-cc/CMakeLists.txt | 8 |
2 files changed, 11 insertions, 11 deletions
diff --git a/clang/lib/Frontend/CMakeLists.txt b/clang/lib/Frontend/CMakeLists.txt index 807b469b751..02e02f3fc89 100644 --- a/clang/lib/Frontend/CMakeLists.txt +++ b/clang/lib/Frontend/CMakeLists.txt @@ -3,14 +3,16 @@ set(LLVM_NO_RTTI 1) add_clang_library(clangFrontend ASTConsumers.cpp Backend.cpp + CacheTokens.cpp + DependencyFile.cpp + DiagChecker.cpp FixItRewriter.cpp GeneratePCH.cpp HTMLDiagnostics.cpp HTMLPrint.cpp InitHeaderSearch.cpp InitPreprocessor.cpp - TextDiagnosticBuffer.cpp - TextDiagnosticPrinter.cpp + ManagerRegistry.cpp PCHReader.cpp PCHReaderDecl.cpp PCHReaderStmt.cpp @@ -18,7 +20,13 @@ add_clang_library(clangFrontend PCHWriterDecl.cpp PCHWriterStmt.cpp PlistDiagnostics.cpp + PrintParserCallbacks.cpp + PrintPreprocessedOutput.cpp RewriteBlocks.cpp + RewriteMacros.cpp RewriteObjC.cpp - ManagerRegistry.cpp + RewriteTest.cpp + TextDiagnosticBuffer.cpp + TextDiagnosticPrinter.cpp + Warnings.cpp ) diff --git a/clang/tools/clang-cc/CMakeLists.txt b/clang/tools/clang-cc/CMakeLists.txt index 9029c0a247b..a20691dfed5 100644 --- a/clang/tools/clang-cc/CMakeLists.txt +++ b/clang/tools/clang-cc/CMakeLists.txt @@ -23,13 +23,5 @@ set( LLVM_LINK_COMPONENTS add_clang_executable(clang-cc AnalysisConsumer.cpp - CacheTokens.cpp clang-cc.cpp - DependencyFile.cpp - DiagChecker.cpp - PrintParserCallbacks.cpp - PrintPreprocessedOutput.cpp - RewriteMacros.cpp - RewriteTest.cpp - Warnings.cpp ) |