1 set(LLVM_LINK_COMPONENTS 2 ${LLVM_TARGETS_TO_BUILD} 3 asmparser 4 support 5 mc 6 ) 7 8 add_clang_library(clangSema 9 AnalysisBasedWarnings.cpp 10 AttributeList.cpp 11 CodeCompleteConsumer.cpp 12 DeclSpec.cpp 13 DelayedDiagnostic.cpp 14 IdentifierResolver.cpp 15 JumpDiagnostics.cpp 16 MultiplexExternalSemaSource.cpp 17 Scope.cpp 18 ScopeInfo.cpp 19 Sema.cpp 20 SemaAccess.cpp 21 SemaAttr.cpp 22 SemaCXXScopeSpec.cpp 23 SemaCast.cpp 24 SemaChecking.cpp 25 SemaCodeComplete.cpp 26 SemaConsumer.cpp 27 SemaDecl.cpp 28 SemaDeclAttr.cpp 29 SemaDeclCXX.cpp 30 SemaDeclObjC.cpp 31 SemaExceptionSpec.cpp 32 SemaExpr.cpp 33 SemaExprCXX.cpp 34 SemaExprMember.cpp 35 SemaExprObjC.cpp 36 SemaFixItUtils.cpp 37 SemaInit.cpp 38 SemaLambda.cpp 39 SemaLookup.cpp 40 SemaObjCProperty.cpp 41 SemaOpenMP.cpp 42 SemaOverload.cpp 43 SemaPseudoObject.cpp 44 SemaStmt.cpp 45 SemaStmtAsm.cpp 46 SemaStmtAttr.cpp 47 SemaTemplate.cpp 48 SemaTemplateDeduction.cpp 49 SemaTemplateInstantiate.cpp 50 SemaTemplateInstantiateDecl.cpp 51 SemaTemplateVariadic.cpp 52 SemaType.cpp 53 TargetAttributesSema.cpp 54 TypeLocBuilder.cpp 55 ) 56 57 add_dependencies(clangSema 58 ClangARMNeon 59 ClangAttrClasses 60 ClangAttrList 61 ClangAttrParsedAttrList 62 ClangAttrParsedAttrKinds 63 ClangAttrSpellingListIndex 64 ClangAttrTemplateInstantiate 65 ClangCommentNodes 66 ClangDeclNodes 67 ClangDiagnosticAST 68 ClangDiagnosticComment 69 ClangDiagnosticCommon 70 ClangDiagnosticParse 71 ClangDiagnosticSema 72 ClangStmtNodes 73 ) 74 75 target_link_libraries(clangSema 76 clangAST 77 clangAnalysis 78 clangBasic 79 clangEdit 80 clangLex 81 ) 82