1set(LLVM_LINK_COMPONENTS support) 2 3add_clang_library(clangStaticAnalyzerCore 4 APSIntType.cpp 5 AnalysisManager.cpp 6 AnalyzerOptions.cpp 7 BasicValueFactory.cpp 8 BlockCounter.cpp 9 BugReporter.cpp 10 BugReporterVisitors.cpp 11 CallEvent.cpp 12 Checker.cpp 13 CheckerContext.cpp 14 CheckerHelpers.cpp 15 CheckerManager.cpp 16 CheckerRegistry.cpp 17 CommonBugCategories.cpp 18 ConstraintManager.cpp 19 CoreEngine.cpp 20 Environment.cpp 21 ExplodedGraph.cpp 22 ExprEngine.cpp 23 ExprEngineC.cpp 24 ExprEngineCXX.cpp 25 ExprEngineCallAndReturn.cpp 26 ExprEngineObjC.cpp 27 FunctionSummary.cpp 28 HTMLDiagnostics.cpp 29 MemRegion.cpp 30 PathDiagnostic.cpp 31 PlistDiagnostics.cpp 32 ProgramState.cpp 33 RangeConstraintManager.cpp 34 RegionStore.cpp 35 SValBuilder.cpp 36 SVals.cpp 37 SimpleConstraintManager.cpp 38 SimpleSValBuilder.cpp 39 Store.cpp 40 SubEngine.cpp 41 SymbolManager.cpp 42 43 LINK_LIBS 44 clangAST 45 clangAnalysis 46 clangBasic 47 clangLex 48 clangRewriteCore 49 ) 50