xref: /openbsd/gnu/llvm/clang/lib/Parse/CMakeLists.txt (revision 12c85518)
1set(LLVM_LINK_COMPONENTS
2  FrontendOpenMP
3  MC
4  MCParser
5  Support
6  TargetParser
7  )
8
9add_clang_library(clangParse
10  ParseAST.cpp
11  ParseCXXInlineMethods.cpp
12  ParseDecl.cpp
13  ParseDeclCXX.cpp
14  ParseExpr.cpp
15  ParseExprCXX.cpp
16  ParseHLSL.cpp
17  ParseInit.cpp
18  ParseObjc.cpp
19  ParseOpenMP.cpp
20  ParsePragma.cpp
21  ParseStmt.cpp
22  ParseStmtAsm.cpp
23  ParseTemplate.cpp
24  ParseTentative.cpp
25  Parser.cpp
26
27  LINK_LIBS
28  clangAST
29  clangBasic
30  clangLex
31  clangSema
32
33  DEPENDS
34  omp_gen
35  )
36