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