Files
clang-p2996/clang/lib/Parse/CMakeLists.txt
2025-06-24 08:51:25 -04:00

41 lines
591 B
CMake

set(LLVM_LINK_COMPONENTS
FrontendHLSL
FrontendOpenMP
MC
MCParser
Support
TargetParser
)
add_clang_library(clangParse
ParseAST.cpp
ParseCXXInlineMethods.cpp
ParseDecl.cpp
ParseDeclCXX.cpp
ParseExpr.cpp
ParseExprCXX.cpp
ParseHLSL.cpp
ParseHLSLRootSignature.cpp
ParseInit.cpp
ParseObjc.cpp
ParseOpenMP.cpp
ParsePragma.cpp
ParseReflect.cpp
ParseStmt.cpp
ParseStmtAsm.cpp
ParseTemplate.cpp
ParseTentative.cpp
Parser.cpp
ParseOpenACC.cpp
LINK_LIBS
clangAST
clangBasic
clangLex
clangSema
DEPENDS
omp_gen
ClangDriverOptions
)