• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  MCParser
3  MC
4  Support
5  )
6
7add_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  clangBasic
26  clangAST
27  clangLex
28  clangSema
29  )
30