]> granicus.if.org Git - clang/commitdiff
Attempted CMake build fixes for r72060; this is untested, so please tell
authorEli Friedman <eli.friedman@gmail.com>
Mon, 18 May 2009 23:06:15 +0000 (23:06 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Mon, 18 May 2009 23:06:15 +0000 (23:06 +0000)
me if there are any issues.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72063 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/CMakeLists.txt
tools/clang-cc/CMakeLists.txt

index 047314649f7f373d293cb0f5dc80163ff98b2d6a..807b469b751494f1529ed53640b7734f4b41cffc 100644 (file)
@@ -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
   )
index 4ebebb74f5af2d835d4f6db74827421253686618..9029c0a247b29f70df5672bf2517cc1c5ecda08e 100644 (file)
@@ -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
   )