Michele Scuttari 8c1f018cd7
[MLIR] Add missing library in MLIRMLProgramTransforms target (#141210)
Add the `MLIRBufferizationTransforms` library in the list libraries linked by the `MLIRMLProgramTransforms` one. The problem was not catched before the merge of #141019.
2025-05-23 12:33:01 +02:00

18 lines
353 B
CMake

add_mlir_dialect_library(MLIRMLProgramTransforms
BufferizableOpInterfaceImpl.cpp
PipelineGlobalOps.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/MLProgram/Transforms
DEPENDS
MLIRMLProgramPassIncGen
LINK_LIBS PUBLIC
MLIRBufferizationDialect
MLIRBufferizationTransforms
MLIRIR
MLIRMLProgramDialect
MLIRPass
)