blob: 5d297f9831d1d4531db60f2c6d833943133f7044 [file] [log] [blame]
NAKAMURA Takumi00fd5dd2012-03-06 22:32:32 +00001set(LLVM_USED_LIBS
2 clangAST
3 clangAnalysis
4 clangBasic
5 clangEdit
6 clangLex
7 )
Michael J. Spencer560a9212010-09-13 23:54:41 +00008
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +00009add_clang_library(clangSema
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000010 AnalysisBasedWarnings.cpp
John McCall19510852010-08-20 18:27:03 +000011 AttributeList.cpp
Douglas Gregor81b747b2009-09-17 21:32:03 +000012 CodeCompleteConsumer.cpp
John McCall19510852010-08-20 18:27:03 +000013 DeclSpec.cpp
Douglas Gregor29233802011-03-23 15:13:44 +000014 DelayedDiagnostic.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000015 IdentifierResolver.cpp
Chris Lattner5af280c2009-04-19 04:46:21 +000016 JumpDiagnostics.cpp
John McCallfb44de92011-05-01 22:35:37 +000017 Scope.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000018 Sema.cpp
Douglas Gregor5758be22009-03-27 05:18:33 +000019 SemaAccess.cpp
Chris Lattner5a0c3512009-02-17 00:57:29 +000020 SemaAttr.cpp
Daniel Dunbarf1d93602008-11-11 08:29:24 +000021 SemaCXXScopeSpec.cpp
John McCalld8d3ced2011-10-11 17:38:55 +000022 SemaCast.cpp
Ted Kremenekb3b73642009-07-15 21:08:41 +000023 SemaChecking.cpp
Douglas Gregor81b747b2009-09-17 21:32:03 +000024 SemaCodeComplete.cpp
Chandler Carruth3ff53b32011-12-20 08:42:15 +000025 SemaConsumer.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000026 SemaDecl.cpp
Ted Kremenekb3b73642009-07-15 21:08:41 +000027 SemaDeclAttr.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000028 SemaDeclCXX.cpp
29 SemaDeclObjC.cpp
Sebastian Redldced2262009-10-11 09:03:14 +000030 SemaExceptionSpec.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000031 SemaExpr.cpp
32 SemaExprCXX.cpp
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +000033 SemaExprMember.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000034 SemaExprObjC.cpp
Anna Zaksf3546ee2011-07-28 19:46:48 +000035 SemaFixItUtils.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000036 SemaInit.cpp
Douglas Gregore2a7ad02012-02-08 21:18:48 +000037 SemaLambda.cpp
Douglas Gregoreb11cd02009-01-14 22:20:51 +000038 SemaLookup.cpp
Ted Kremenek34836f22010-03-12 00:38:40 +000039 SemaObjCProperty.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000040 SemaOverload.cpp
John McCall3c3b7f92011-10-25 17:37:35 +000041 SemaPseudoObject.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000042 SemaStmt.cpp
Douglas Gregor72c3f312008-12-05 18:15:24 +000043 SemaTemplate.cpp
Douglas Gregor0b9247f2009-06-04 00:03:07 +000044 SemaTemplateDeduction.cpp
Douglas Gregor99ebf652009-02-27 19:31:52 +000045 SemaTemplateInstantiate.cpp
Douglas Gregor8dbc2692009-03-17 21:15:40 +000046 SemaTemplateInstantiateDecl.cpp
Douglas Gregorc4633352010-12-15 17:38:57 +000047 SemaTemplateVariadic.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000048 SemaType.cpp
Anton Korobeynikovf3e27bf2010-01-10 13:06:34 +000049 TargetAttributesSema.cpp
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000050 )
Douglas Gregora393e9e2009-03-16 23:06:59 +000051
Michael J. Spencer560a9212010-09-13 23:54:41 +000052add_dependencies(clangSema ClangARMNeon ClangAttrClasses ClangAttrList
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000053 ClangDiagnosticSema ClangDeclNodes ClangStmtNodes
Michael Hane53ac8a2012-03-07 00:12:16 +000054 ClangAttrTemplateInstantiate ClangAttrParsedAttrList
55 ClangAttrParsedAttrKinds)
56
57