Home | History | Annotate | Download | only in Parse
      1 set(LLVM_LINK_COMPONENTS
      2   MC
      3   MCParser
      4   Support
      5   )
      6 
      7 add_clang_library(clangParse
      8   ParseAST.cpp
      9   ParseCXXInlineMethods.cpp
     10   ParseDecl.cpp
     11   ParseDeclCXX.cpp
     12   ParseExpr.cpp
     13   ParseExprCXX.cpp
     14   ParseInit.cpp
     15   ParseObjc.cpp
     16   ParseOpenMP.cpp
     17   ParsePragma.cpp
     18   ParseStmt.cpp
     19   ParseStmtAsm.cpp
     20   ParseTemplate.cpp
     21   ParseTentative.cpp
     22   Parser.cpp
     23 
     24   LINK_LIBS
     25   clangAST
     26   clangBasic
     27   clangLex
     28   clangSema
     29   )
     30