aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Sema')
-rw-r--r--lib/Sema/CMakeLists.txt67
1 files changed, 0 insertions, 67 deletions
diff --git a/lib/Sema/CMakeLists.txt b/lib/Sema/CMakeLists.txt
deleted file mode 100644
index 5f20af01fb7b..000000000000
--- a/lib/Sema/CMakeLists.txt
+++ /dev/null
@@ -1,67 +0,0 @@
-set(LLVM_LINK_COMPONENTS
- Support
- )
-
-if (MSVC)
- set_source_files_properties(SemaDeclAttr.cpp PROPERTIES COMPILE_FLAGS /bigobj)
- set_source_files_properties(SemaExpr.cpp PROPERTIES COMPILE_FLAGS /bigobj)
- set_source_files_properties(SemaExprCXX.cpp PROPERTIES COMPILE_FLAGS /bigobj)
- set_source_files_properties(SemaTemplate.cpp PROPERTIES COMPILE_FLAGS /bigobj)
-endif()
-
-add_clang_library(clangSema
- AnalysisBasedWarnings.cpp
- CodeCompleteConsumer.cpp
- DeclSpec.cpp
- DelayedDiagnostic.cpp
- IdentifierResolver.cpp
- JumpDiagnostics.cpp
- MultiplexExternalSemaSource.cpp
- ParsedAttr.cpp
- Scope.cpp
- ScopeInfo.cpp
- Sema.cpp
- SemaAccess.cpp
- SemaAttr.cpp
- SemaCXXScopeSpec.cpp
- SemaCast.cpp
- SemaChecking.cpp
- SemaCodeComplete.cpp
- SemaConsumer.cpp
- SemaCoroutine.cpp
- SemaCUDA.cpp
- SemaDecl.cpp
- SemaDeclAttr.cpp
- SemaDeclCXX.cpp
- SemaDeclObjC.cpp
- SemaExceptionSpec.cpp
- SemaExpr.cpp
- SemaExprCXX.cpp
- SemaExprMember.cpp
- SemaExprObjC.cpp
- SemaFixItUtils.cpp
- SemaInit.cpp
- SemaLambda.cpp
- SemaLookup.cpp
- SemaObjCProperty.cpp
- SemaOpenMP.cpp
- SemaOverload.cpp
- SemaPseudoObject.cpp
- SemaStmt.cpp
- SemaStmtAsm.cpp
- SemaStmtAttr.cpp
- SemaTemplate.cpp
- SemaTemplateDeduction.cpp
- SemaTemplateInstantiate.cpp
- SemaTemplateInstantiateDecl.cpp
- SemaTemplateVariadic.cpp
- SemaType.cpp
- TypeLocBuilder.cpp
-
- LINK_LIBS
- clangAST
- clangAnalysis
- clangBasic
- clangEdit
- clangLex
- )