Home | History | Annotate | Download | only in Core
      1 set(LLVM_LINK_COMPONENTS support)
      2 
      3 set(LLVM_USED_LIBS clangBasic clangLex clangAST clangFrontend clangRewrite)
      4 
      5 add_clang_library(clangStaticAnalyzerCore
      6   AggExprVisitor.cpp
      7   AnalysisManager.cpp
      8   BasicConstraintManager.cpp
      9   BasicStore.cpp
     10   BasicValueFactory.cpp
     11   BlockCounter.cpp
     12   BugReporter.cpp
     13   BugReporterVisitors.cpp
     14   CFRefCount.cpp
     15   CXXExprEngine.cpp
     16   CheckerContext.cpp
     17   CheckerHelpers.cpp
     18   CheckerManager.cpp
     19   CoreEngine.cpp
     20   Environment.cpp
     21   ExplodedGraph.cpp
     22   ExprEngine.cpp
     23   FlatStore.cpp
     24   GRState.cpp
     25   HTMLDiagnostics.cpp
     26   MemRegion.cpp
     27   ObjCMessage.cpp
     28   PathDiagnostic.cpp
     29   PlistDiagnostics.cpp
     30   RangeConstraintManager.cpp
     31   RegionStore.cpp
     32   SimpleConstraintManager.cpp
     33   SimpleSValBuilder.cpp
     34   Store.cpp
     35   SValBuilder.cpp
     36   SVals.cpp
     37   SymbolManager.cpp
     38   TextPathDiagnostics.cpp
     39   )
     40 
     41 add_dependencies(clangStaticAnalyzerCore ClangAttrClasses ClangAttrList ClangDeclNodes
     42                  ClangStmtNodes)
     43