wut/tools/elf2rpl/CMakeLists.txt
2018-06-28 16:01:16 +01:00

12 lines
192 B
CMake

project(elf2rpl)
add_executable(elf2rpl
main.cpp)
target_link_libraries(elf2rpl
excmd
fmt
zlibstatic)
install(TARGETS elf2rpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")