freebsd-nq/lib/Sema/CMakeLists.txt

65 lines
1.2 KiB
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS
Support
)
2009-06-02 17:58:47 +00:00
if (MSVC)
set_source_files_properties(SemaExpr.cpp PROPERTIES COMPILE_FLAGS /bigobj)
endif()
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
SemaCoroutine.cpp
SemaCUDA.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
TypeLocBuilder.cpp
LINK_LIBS
clangAST
clangAnalysis
clangBasic
clangEdit
clangLex
)