12 lines
331 B
CMake
12 lines
331 B
CMake
|
set(LLVM_USED_LIBS clangDriver clangFrontend clangRewrite clangCodeGen
|
||
|
clangStaticAnalyzerFrontend clangStaticAnalyzerCheckers clangStaticAnalyzerCore
|
||
|
clangARCMigrate)
|
||
|
|
||
|
add_clang_library(clangFrontendTool
|
||
|
ExecuteCompilerInvocation.cpp
|
||
|
)
|
||
|
|
||
|
add_dependencies(clangFrontendTool
|
||
|
ClangCC1Options
|
||
|
ClangDiagnosticFrontend)
|