blob: ca166669fc89dd8d2991196248ee1f4d87dba896 [file] [log] [blame]
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +00001add_clang_library(clangAnalysis
Ted Kremenek1d26f482011-10-24 01:32:45 +00002 AnalysisDeclContext.cpp
Ted Kremeneka43df952012-09-21 00:09:11 +00003 BodyFarm.cpp
Ted Kremeneke41611a2009-07-16 18:13:04 +00004 CFG.cpp
Ted Kremenek42461ee2011-02-23 01:51:59 +00005 CFGReachabilityAnalysis.cpp
Ted Kremeneka6d69302010-08-04 18:23:15 +00006 CFGStmtMap.cpp
Ted Kremenek4ef19202012-09-13 00:21:31 +00007 CallGraph.cpp
Ted Kremenekbb8fef32010-12-17 05:21:58 +00008 CocoaConventions.cpp
Chandler Carruth3ff53b32011-12-20 08:42:15 +00009 Dominators.cpp
Ted Kremenek826a3452010-07-16 02:11:22 +000010 FormatString.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000011 LiveVariables.cpp
Ted Kremenek4ef19202012-09-13 00:21:31 +000012 ObjCNoReturn.cpp
Ted Kremenekedb18632011-10-22 02:14:23 +000013 PostOrderCFGView.cpp
Ted Kremenek8f0a1c72010-01-27 23:43:25 +000014 PrintfFormatString.cpp
Ted Kremenekca804532011-08-12 23:04:46 +000015 ProgramPoint.cpp
Tom Caredb34ab72010-08-23 19:51:57 +000016 PseudoConstantAnalysis.cpp
Ted Kremenek3d2eed82010-02-23 02:39:16 +000017 ReachableCode.cpp
Ted Kremenek826a3452010-07-16 02:11:22 +000018 ScanfFormatString.cpp
Caitlin Sadowski402aa062011-09-09 16:11:56 +000019 ThreadSafety.cpp
Ted Kremenek6f342132011-03-15 03:17:07 +000020 UninitializedValues.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000021 )
Douglas Gregora393e9e2009-03-16 23:06:59 +000022
Chandler Carruthb0d86712012-06-21 01:30:21 +000023add_dependencies(clangAnalysis
24 ClangAttrClasses
25 ClangAttrList
Dmitri Gribenko8d3ba232012-07-06 00:28:32 +000026 ClangCommentNodes
NAKAMURA Takumi11abf2a2012-07-27 06:18:33 +000027 ClangDiagnosticCommon
Chandler Carruthb0d86712012-06-21 01:30:21 +000028 ClangDeclNodes
NAKAMURA Takumi866abce2012-07-27 06:18:12 +000029 ClangDiagnosticAnalysis
Chandler Carruthb0d86712012-06-21 01:30:21 +000030 ClangStmtNodes
31 )
32
33target_link_libraries(clangAnalysis
34 clangBasic
35 clangAST
36 )