20 lines
354 B
CMake
20 lines
354 B
CMake
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
|
|
|
|
if(MLIR_INCLUDE_TESTS)
|
|
set(test_libs
|
|
MLIRTestDialect
|
|
)
|
|
endif()
|
|
|
|
add_mlir_tool(mlir-query
|
|
mlir-query.cpp
|
|
)
|
|
llvm_update_compile_flags(mlir-query)
|
|
target_link_libraries(mlir-query
|
|
PRIVATE
|
|
${dialect_libs}
|
|
${test_libs}
|
|
MLIRQueryLib
|
|
)
|
|
|
|
mlir_check_link_libraries(mlir-query)
|