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