1set(LLVM_LINK_COMPONENTS 2 Support 3 ) 4 5add_clang_library(clangSema 6 AnalysisBasedWarnings.cpp 7 AttributeList.cpp 8 CodeCompleteConsumer.cpp 9 DeclSpec.cpp 10 DelayedDiagnostic.cpp 11 IdentifierResolver.cpp 12 JumpDiagnostics.cpp 13 MultiplexExternalSemaSource.cpp 14 Scope.cpp 15 ScopeInfo.cpp 16 Sema.cpp 17 SemaAccess.cpp 18 SemaAttr.cpp 19 SemaCXXScopeSpec.cpp 20 SemaCast.cpp 21 SemaChecking.cpp 22 SemaCodeComplete.cpp 23 SemaConsumer.cpp 24 SemaCoroutine.cpp 25 SemaCUDA.cpp 26 SemaDecl.cpp 27 SemaDeclAttr.cpp 28 SemaDeclCXX.cpp 29 SemaDeclObjC.cpp 30 SemaExceptionSpec.cpp 31 SemaExpr.cpp 32 SemaExprCXX.cpp 33 SemaExprMember.cpp 34 SemaExprObjC.cpp 35 SemaFixItUtils.cpp 36 SemaInit.cpp 37 SemaLambda.cpp 38 SemaLookup.cpp 39 SemaObjCProperty.cpp 40 SemaOpenMP.cpp 41 SemaOverload.cpp 42 SemaPseudoObject.cpp 43 SemaStmt.cpp 44 SemaStmtAsm.cpp 45 SemaStmtAttr.cpp 46 SemaTemplate.cpp 47 SemaTemplateDeduction.cpp 48 SemaTemplateInstantiate.cpp 49 SemaTemplateInstantiateDecl.cpp 50 SemaTemplateVariadic.cpp 51 SemaType.cpp 52 TypeLocBuilder.cpp 53 54 LINK_LIBS 55 clangAST 56 clangAnalysis 57 clangBasic 58 clangEdit 59 clangLex 60 ) 61