freebsd-nq/lib/Sema/CMakeLists.txt

83 lines
1.5 KiB
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
asmparser
support
mc
)
2009-06-02 17:58:47 +00:00
add_clang_library(clangSema
2010-03-21 10:50:08 +00:00
AnalysisBasedWarnings.cpp
AttributeList.cpp
2009-10-14 18:03:49 +00:00
CodeCompleteConsumer.cpp
DeclSpec.cpp
DelayedDiagnostic.cpp
2009-06-02 17:58:47 +00:00
IdentifierResolver.cpp
JumpDiagnostics.cpp
MultiplexExternalSemaSource.cpp
Scope.cpp
ScopeInfo.cpp
2009-06-02 17:58:47 +00:00
Sema.cpp
SemaAccess.cpp
SemaAttr.cpp
SemaCXXScopeSpec.cpp
SemaCast.cpp
2009-10-14 18:03:49 +00:00
SemaChecking.cpp
SemaCodeComplete.cpp
SemaConsumer.cpp
2009-06-02 17:58:47 +00:00
SemaDecl.cpp
2009-10-14 18:03:49 +00:00
SemaDeclAttr.cpp
2009-06-02 17:58:47 +00:00
SemaDeclCXX.cpp
SemaDeclObjC.cpp
2009-10-14 18:03:49 +00:00
SemaExceptionSpec.cpp
2009-06-02 17:58:47 +00:00
SemaExpr.cpp
SemaExprCXX.cpp
SemaExprMember.cpp
2009-06-02 17:58:47 +00:00
SemaExprObjC.cpp
SemaFixItUtils.cpp
2009-06-02 17:58:47 +00:00
SemaInit.cpp
SemaLambda.cpp
2009-06-02 17:58:47 +00:00
SemaLookup.cpp
2010-03-16 16:52:15 +00:00
SemaObjCProperty.cpp
SemaOpenMP.cpp
2009-06-02 17:58:47 +00:00
SemaOverload.cpp
SemaPseudoObject.cpp
2009-06-02 17:58:47 +00:00
SemaStmt.cpp
SemaStmtAsm.cpp
SemaStmtAttr.cpp
2009-06-02 17:58:47 +00:00
SemaTemplate.cpp
2009-06-06 08:21:31 +00:00
SemaTemplateDeduction.cpp
2009-06-02 17:58:47 +00:00
SemaTemplateInstantiate.cpp
SemaTemplateInstantiateDecl.cpp
SemaTemplateVariadic.cpp
2009-06-02 17:58:47 +00:00
SemaType.cpp
2010-01-15 15:39:40 +00:00
TargetAttributesSema.cpp
TypeLocBuilder.cpp
2009-06-02 17:58:47 +00:00
)
add_dependencies(clangSema
ClangARMNeon
ClangAttrClasses
ClangAttrList
ClangAttrParsedAttrList
ClangAttrParsedAttrKinds
ClangAttrParsedAttrImpl
ClangAttrSpellingListIndex
ClangAttrTemplateInstantiate
ClangCommentNodes
ClangDeclNodes
ClangDiagnosticAST
ClangDiagnosticComment
ClangDiagnosticCommon
ClangDiagnosticParse
ClangDiagnosticSema
ClangStmtNodes
)
target_link_libraries(clangSema
clangAST
clangAnalysis
clangBasic
clangEdit
clangLex
)