blob: 9e8248fe48be7d5a8f55dc4c4757af23b5020d63 [file] [log] [blame]
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +00001set(LLVM_NO_RTTI 1)
2
3add_clang_library(clangAnalysis
4 BasicConstraintManager.cpp
5 BasicObjCFoundationChecks.cpp
6 BasicStore.cpp
7 BasicValueFactory.cpp
8 BugReporter.cpp
9 CFRefCount.cpp
10 CheckDeadStores.cpp
11 CheckNSError.cpp
12 CheckObjCDealloc.cpp
13 CheckObjCInstMethSignature.cpp
14 CheckObjCUnusedIVars.cpp
15 Environment.cpp
16 ExplodedGraph.cpp
17 GRBlockCounter.cpp
18 GRCoreEngine.cpp
19 GRExprEngine.cpp
20 GRExprEngineInternalChecks.cpp
21 GRSimpleVals.cpp
22 GRState.cpp
23 GRTransferFuncs.cpp
24 LiveVariables.cpp
25 MemRegion.cpp
26 PathDiagnostic.cpp
Chris Lattner488d4b72009-02-17 07:40:10 +000027 RangeConstraintManager.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000028 RegionStore.cpp
Chris Lattner488d4b72009-02-17 07:40:10 +000029 SimpleConstraintManager.cpp
Ted Kremenek7cb1bb32009-05-01 18:43:00 +000030 Store.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000031 SVals.cpp
32 SymbolManager.cpp
33 UninitializedValues.cpp
34 )
Douglas Gregora393e9e2009-03-16 23:06:59 +000035
36add_dependencies(clangAnalysis ClangDiagnosticAnalysis)