forked from OSchip/llvm-project
28 lines
467 B
CMake
28 lines
467 B
CMake
set(MODULE TRUE)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_library(SampleAnalyzerPlugin MainCallChecker.cpp)
|
|
|
|
add_dependencies(SampleAnalyzerPlugin
|
|
ClangAttrClasses
|
|
ClangAttrList
|
|
ClangCommentNodes
|
|
ClangDeclNodes
|
|
ClangDiagnosticCommon
|
|
ClangStmtNodes
|
|
)
|
|
|
|
target_link_libraries(SampleAnalyzerPlugin
|
|
clangAST
|
|
clangAnalysis
|
|
clangStaticAnalyzerCore
|
|
)
|
|
|
|
set_target_properties(SampleAnalyzerPlugin
|
|
PROPERTIES
|
|
LINKER_LANGUAGE CXX
|
|
PREFIX "")
|