mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
14 lines
460 B
CMake
14 lines
460 B
CMake
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
revng_add_executable(clift-opt Main.cpp)
|
|
|
|
get_property(dialect_libs GLOBAL PROPERTY MLIR_DIALECT_LIBS)
|
|
get_property(conversion_libs GLOBAL PROPERTY MLIR_CONVERSION_LIBS)
|
|
|
|
set(MLIR_LIBRARIES ${dialect_libs} ${conversion_libs} MLIROptLib)
|
|
|
|
target_link_libraries(clift-opt revngClift revngCliftEmitC revngCliftTransforms
|
|
${MLIR_LIBRARIES} ${LLVM_LIBRARIES})
|