You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
493 B
26 lines
493 B
7 months ago
|
set(LLVM_LINK_COMPONENTS
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
|
||
|
get_property(translation_libs GLOBAL PROPERTY MLIR_TRANSLATION_LIBS)
|
||
|
|
||
|
add_llvm_tool(mlir-translate
|
||
|
mlir-translate.cpp
|
||
|
)
|
||
|
llvm_update_compile_flags(mlir-translate)
|
||
|
target_link_libraries(mlir-translate
|
||
|
PRIVATE
|
||
|
${dialect_libs}
|
||
|
${translation_libs}
|
||
|
${test_libs}
|
||
|
MLIRIR
|
||
|
MLIRParser
|
||
|
MLIRPass
|
||
|
MLIRSPIRV
|
||
|
MLIRTranslation
|
||
|
MLIRSupport
|
||
|
)
|
||
|
|
||
|
mlir_check_link_libraries(mlir-translate)
|