| 1 | include_directories( ${CMAKE_CURRENT_BINARY_DIR}/../Checkers ) |
|---|---|
| 2 | |
| 3 | set(LLVM_LINK_COMPONENTS |
| 4 | Support |
| 5 | ) |
| 6 | |
| 7 | add_clang_library(clangStaticAnalyzerFrontend |
| 8 | AnalysisConsumer.cpp |
| 9 | CheckerRegistration.cpp |
| 10 | CheckerRegistry.cpp |
| 11 | FrontendActions.cpp |
| 12 | ModelConsumer.cpp |
| 13 | ModelInjector.cpp |
| 14 | |
| 15 | LINK_LIBS |
| 16 | clangAST |
| 17 | clangAnalysis |
| 18 | clangBasic |
| 19 | clangCrossTU |
| 20 | clangFrontend |
| 21 | clangLex |
| 22 | clangStaticAnalyzerCheckers |
| 23 | clangStaticAnalyzerCore |
| 24 | ) |
| 25 |