Home | History | Annotate | Download | only in Sema
      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   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   TargetAttributesSema.cpp
     53   )
     54 
     55 add_dependencies(clangSema
     56   ClangARMNeon
     57   ClangAttrClasses
     58   ClangAttrList
     59   ClangAttrParsedAttrList
     60   ClangAttrParsedAttrKinds
     61   ClangAttrSpellingListIndex
     62   ClangAttrTemplateInstantiate
     63   ClangCommentNodes
     64   ClangDeclNodes
     65   ClangDiagnosticAST
     66   ClangDiagnosticComment
     67   ClangDiagnosticCommon
     68   ClangDiagnosticParse
     69   ClangDiagnosticSema
     70   ClangStmtNodes
     71   )
     72 
     73 target_link_libraries(clangSema
     74   clangAST
     75   clangAnalysis
     76   clangBasic
     77   clangEdit
     78   clangLex
     79   )
     80