forked from OSchip/llvm-project
26 lines
494 B
CMake
26 lines
494 B
CMake
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
|
|
MLIRTranslateLib
|
|
MLIRSupport
|
|
)
|
|
|
|
mlir_check_link_libraries(mlir-translate)
|