forked from OSchip/llvm-project
20 lines
350 B
CMake
20 lines
350 B
CMake
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/../Checkers )
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_library(clangStaticAnalyzerFrontend
|
|
AnalysisConsumer.cpp
|
|
CheckerRegistration.cpp
|
|
FrontendActions.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangAnalysis
|
|
clangBasic
|
|
clangFrontend
|
|
clangStaticAnalyzerCheckers
|
|
clangStaticAnalyzerCore
|
|
)
|