зеркало из https://github.com/microsoft/clang-1.git
41 строка
608 B
CMake
41 строка
608 B
CMake
|
set(LLVM_NO_RTTI 1)
|
||
|
|
||
|
set( LLVM_USED_LIBS
|
||
|
clangCodeGen
|
||
|
clangAnalysis
|
||
|
clangRewrite
|
||
|
clangSema
|
||
|
clangDriver
|
||
|
clangAST
|
||
|
clangParse
|
||
|
clangLex
|
||
|
clangBasic
|
||
|
)
|
||
|
|
||
|
set( LLVM_LINK_COMPONENTS
|
||
|
${LLVM_TARGETS_TO_BUILD}
|
||
|
bitreader
|
||
|
bitwriter
|
||
|
codegen
|
||
|
ipo
|
||
|
selectiondag
|
||
|
)
|
||
|
|
||
|
add_clang_executable(clang
|
||
|
AnalysisConsumer.cpp
|
||
|
ASTConsumers.cpp
|
||
|
Backend.cpp
|
||
|
CacheTokens.cpp
|
||
|
clang.cpp
|
||
|
DependencyFile.cpp
|
||
|
DiagChecker.cpp
|
||
|
HTMLPrint.cpp
|
||
|
PrintParserCallbacks.cpp
|
||
|
PrintPreprocessedOutput.cpp
|
||
|
RewriteBlocks.cpp
|
||
|
RewriteMacros.cpp
|
||
|
RewriteObjC.cpp
|
||
|
RewriteTest.cpp
|
||
|
SerializationTest.cpp
|
||
|
)
|