blob: 850e9b468100bb661fe1c61a0450ea900589067e [file] [log] [blame]
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +00001set(LLVM_NO_RTTI 1)
2
3add_clang_library(clangAnalysis
Daniel Dunbar7be573f2009-07-30 03:55:04 +00004 AnalysisContext.cpp
Ted Kremenek6796fbd2009-07-16 18:13:04 +00005 CFG.cpp
Ted Kremenek09502122010-08-04 18:23:15 +00006 CFGStmtMap.cpp
Ted Kremenek02087932010-07-16 02:11:22 +00007 FormatString.cpp
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +00008 LiveVariables.cpp
Ted Kremeneka2e77b42010-01-27 23:43:25 +00009 PrintfFormatString.cpp
Tom Caree332c3b2010-08-23 19:51:57 +000010 PseudoConstantAnalysis.cpp
Ted Kremenek7296de92010-02-23 02:39:16 +000011 ReachableCode.cpp
Ted Kremenek02087932010-07-16 02:11:22 +000012 ScanfFormatString.cpp
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +000013 UninitializedValues.cpp
14 )
Douglas Gregor23d75bb2009-03-16 23:06:59 +000015
Alexis Huntc675ec02010-06-17 00:37:02 +000016add_dependencies(clangAnalysis ClangAttrClasses ClangAttrList
17 ClangDiagnosticAnalysis ClangDeclNodes ClangStmtNodes)