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