Files
revng-revng/tools/model/diff/CMakeLists.txt
Alessandro Di Federico 3980ee3fad Introduce model tools
2022-01-31 16:28:14 +01:00

14 lines
266 B
CMake

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
revng_add_executable(revng-model-diff
Main.cpp
)
llvm_map_components_to_libnames(LLVM_LIBRARIES IRReader)
target_link_libraries(revng-model-diff
revngModel
${LLVM_LIBRARIES}
)