blob: a4b40d21a35b431fcc09a7d0c94583e024454823 [file] [log] [blame]
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +00001set(LLVM_NO_RTTI 1)
2
3set( LLVM_USED_LIBS
4 clangCodeGen
5 clangAnalysis
6 clangRewrite
7 clangSema
Mike Stumpa43a21e2009-03-24 17:52:34 +00008 clangFrontend
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +00009 clangAST
10 clangParse
11 clangLex
12 clangBasic
13 )
14
15set( LLVM_LINK_COMPONENTS
16 ${LLVM_TARGETS_TO_BUILD}
17 bitreader
18 bitwriter
19 codegen
20 ipo
21 selectiondag
22 )
23
Daniel Dunbar073777f2009-03-24 03:00:12 +000024add_clang_executable(clang-cc
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000025 AnalysisConsumer.cpp
26 ASTConsumers.cpp
27 Backend.cpp
28 CacheTokens.cpp
Ted Kremenekc2542b62009-03-31 18:58:14 +000029 clang-cc.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000030 DependencyFile.cpp
31 DiagChecker.cpp
32 HTMLPrint.cpp
33 PrintParserCallbacks.cpp
34 PrintPreprocessedOutput.cpp
35 RewriteBlocks.cpp
36 RewriteMacros.cpp
37 RewriteObjC.cpp
38 RewriteTest.cpp
39 SerializationTest.cpp
Sebastian Redl63a9e0f2009-03-06 17:41:35 +000040 Warnings.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000041 )