mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 14:16:08 +00:00
38 lines
589 B
CMake
38 lines
589 B
CMake
set(
|
|
LLVM_LINK_COMPONENTS
|
|
Core
|
|
Support
|
|
)
|
|
|
|
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
|
|
|
|
add_clang_library(clangCIR
|
|
CIRGenerator.cpp
|
|
CIRGenBuilder.cpp
|
|
CIRGenCall.cpp
|
|
CIRGenDecl.cpp
|
|
CIRGenDeclOpenACC.cpp
|
|
CIRGenExpr.cpp
|
|
CIRGenExprAggregate.cpp
|
|
CIRGenExprConstant.cpp
|
|
CIRGenExprScalar.cpp
|
|
CIRGenFunction.cpp
|
|
CIRGenModule.cpp
|
|
CIRGenStmt.cpp
|
|
CIRGenStmtOpenACC.cpp
|
|
CIRGenTypes.cpp
|
|
|
|
DEPENDS
|
|
MLIRCIR
|
|
MLIRCIROpInterfacesIncGen
|
|
${dialect_libs}
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangLex
|
|
${dialect_libs}
|
|
MLIRCIR
|
|
MLIRCIRInterfaces
|
|
)
|