Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
| 2 | |
| 3 | add_clang_library(clangAnalysis |
| 4 | BasicConstraintManager.cpp |
| 5 | BasicObjCFoundationChecks.cpp |
| 6 | BasicStore.cpp |
| 7 | BasicValueFactory.cpp |
| 8 | BugReporter.cpp |
Ted Kremenek | 5350066 | 2009-07-22 17:55:28 +0000 | [diff] [blame^] | 9 | BugReporterVisitors.cpp |
Ted Kremenek | e41611a | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 10 | CFG.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 11 | CFRefCount.cpp |
Ted Kremenek | b8f96f6 | 2009-07-16 01:43:33 +0000 | [diff] [blame] | 12 | CallGraph.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 13 | CheckDeadStores.cpp |
| 14 | CheckNSError.cpp |
| 15 | CheckObjCDealloc.cpp |
| 16 | CheckObjCInstMethSignature.cpp |
| 17 | CheckObjCUnusedIVars.cpp |
| 18 | Environment.cpp |
| 19 | ExplodedGraph.cpp |
| 20 | GRBlockCounter.cpp |
| 21 | GRCoreEngine.cpp |
| 22 | GRExprEngine.cpp |
| 23 | GRExprEngineInternalChecks.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 24 | GRState.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 25 | LiveVariables.cpp |
| 26 | MemRegion.cpp |
| 27 | PathDiagnostic.cpp |
Chris Lattner | 488d4b7 | 2009-02-17 07:40:10 +0000 | [diff] [blame] | 28 | RangeConstraintManager.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 29 | RegionStore.cpp |
Ted Kremenek | b3b7364 | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 30 | SVals.cpp |
Ted Kremenek | 32c3fa4 | 2009-07-21 21:03:30 +0000 | [diff] [blame] | 31 | SValuator.cpp |
Chris Lattner | 488d4b7 | 2009-02-17 07:40:10 +0000 | [diff] [blame] | 32 | SimpleConstraintManager.cpp |
Ted Kremenek | 6c07bdb | 2009-06-26 00:05:51 +0000 | [diff] [blame] | 33 | SimpleSValuator.cpp |
Ted Kremenek | 7cb1bb3 | 2009-05-01 18:43:00 +0000 | [diff] [blame] | 34 | Store.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 35 | SymbolManager.cpp |
| 36 | UninitializedValues.cpp |
Ted Kremenek | cfb361b | 2009-06-23 16:54:53 +0000 | [diff] [blame] | 37 | ValueManager.cpp |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 38 | ) |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 39 | |
| 40 | add_dependencies(clangAnalysis ClangDiagnosticAnalysis) |