Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 1 | set(LLVM_NO_RTTI 1) |
| 2 | |
| 3 | add_clang_library(clangAnalysis |
Daniel Dunbar | 7be573f | 2009-07-30 03:55:04 +0000 | [diff] [blame^] | 4 | AnalysisContext.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 5 | BasicConstraintManager.cpp |
| 6 | BasicObjCFoundationChecks.cpp |
| 7 | BasicStore.cpp |
| 8 | BasicValueFactory.cpp |
| 9 | BugReporter.cpp |
Ted Kremenek | f128207 | 2009-07-22 17:55:28 +0000 | [diff] [blame] | 10 | BugReporterVisitors.cpp |
Ted Kremenek | 6796fbd | 2009-07-16 18:13:04 +0000 | [diff] [blame] | 11 | CFG.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 12 | CFRefCount.cpp |
Ted Kremenek | 942c0e5 | 2009-07-16 01:43:33 +0000 | [diff] [blame] | 13 | CallGraph.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 14 | CheckDeadStores.cpp |
| 15 | CheckNSError.cpp |
| 16 | CheckObjCDealloc.cpp |
| 17 | CheckObjCInstMethSignature.cpp |
| 18 | CheckObjCUnusedIVars.cpp |
Ted Kremenek | c5b4c0e | 2009-07-23 01:07:19 +0000 | [diff] [blame] | 19 | CheckSecuritySyntaxOnly.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 20 | Environment.cpp |
| 21 | ExplodedGraph.cpp |
| 22 | GRBlockCounter.cpp |
| 23 | GRCoreEngine.cpp |
| 24 | GRExprEngine.cpp |
| 25 | GRExprEngineInternalChecks.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 26 | GRState.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 27 | LiveVariables.cpp |
| 28 | MemRegion.cpp |
| 29 | PathDiagnostic.cpp |
Chris Lattner | 30ad173 | 2009-02-17 07:40:10 +0000 | [diff] [blame] | 30 | RangeConstraintManager.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 31 | RegionStore.cpp |
Ted Kremenek | 3e808ed | 2009-07-15 21:08:41 +0000 | [diff] [blame] | 32 | SVals.cpp |
Ted Kremenek | ac7c724 | 2009-07-21 21:03:30 +0000 | [diff] [blame] | 33 | SValuator.cpp |
Chris Lattner | 30ad173 | 2009-02-17 07:40:10 +0000 | [diff] [blame] | 34 | SimpleConstraintManager.cpp |
Ted Kremenek | 1642bda | 2009-06-26 00:05:51 +0000 | [diff] [blame] | 35 | SimpleSValuator.cpp |
Ted Kremenek | 0e3cc24 | 2009-05-01 18:43:00 +0000 | [diff] [blame] | 36 | Store.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 37 | SymbolManager.cpp |
| 38 | UninitializedValues.cpp |
Ted Kremenek | d363f44 | 2009-06-23 16:54:53 +0000 | [diff] [blame] | 39 | ValueManager.cpp |
Oscar Fuentes | 07d9f9a | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 40 | ) |
Douglas Gregor | 23d75bb | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 41 | |
| 42 | add_dependencies(clangAnalysis ClangDiagnosticAnalysis) |