blob: 1709f6d6b78fc85c1d776a31478afe4590537971 [file] [log] [blame]
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +00001set(LLVM_NO_RTTI 1)
2
Michael J. Spencer09476212010-09-13 23:54:41 +00003set(LLVM_USED_LIBS clangBasic clangAST clangIndex)
4
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +00005add_clang_library(clangAnalysis
Daniel Dunbar7be573f2009-07-30 03:55:04 +00006 AnalysisContext.cpp
Ted Kremenek6796fbd2009-07-16 18:13:04 +00007 CFG.cpp
Ted Kremenek09502122010-08-04 18:23:15 +00008 CFGStmtMap.cpp
Ted Kremenek853da962010-12-17 05:21:58 +00009 CocoaConventions.cpp
Ted Kremenek02087932010-07-16 02:11:22 +000010 FormatString.cpp
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +000011 LiveVariables.cpp
Ted Kremeneka2e77b42010-01-27 23:43:25 +000012 PrintfFormatString.cpp
Tom Caree332c3b2010-08-23 19:51:57 +000013 PseudoConstantAnalysis.cpp
Ted Kremenek7296de92010-02-23 02:39:16 +000014 ReachableCode.cpp
Ted Kremenek02087932010-07-16 02:11:22 +000015 ScanfFormatString.cpp
Oscar Fuentes07d9f9a2008-10-26 00:56:18 +000016 UninitializedValues.cpp
17 )
Douglas Gregor23d75bb2009-03-16 23:06:59 +000018
Michael J. Spencer09476212010-09-13 23:54:41 +000019add_dependencies(clangAnalysis ClangAttrClasses ClangAttrList
20 ClangDiagnosticAnalysis ClangDeclNodes ClangStmtNodes)