From: Eli Friedman Date: Tue, 19 May 2009 04:21:30 +0000 (+0000) Subject: CMake updates for r72099; untested, so please tell me if there are any X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba60149b92571d92e41b477915e784191d35dfa8;p=clang CMake updates for r72099; untested, so please tell me if there are any issues. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72100 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/CMakeLists.txt b/lib/Frontend/CMakeLists.txt index 807b469b75..02e02f3fc8 100644 --- a/lib/Frontend/CMakeLists.txt +++ b/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/tools/clang-cc/CMakeLists.txt b/tools/clang-cc/CMakeLists.txt index 9029c0a247..a20691dfed 100644 --- a/tools/clang-cc/CMakeLists.txt +++ b/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 )