wut/tools/elf2rpl/CMakeLists.txt

12 lines
192 B
CMake
Raw Normal View History

2018-05-23 12:35:24 +01:00
project(elf2rpl)
add_executable(elf2rpl
2018-06-28 16:01:16 +01:00
main.cpp)
2018-05-23 12:35:24 +01:00
target_link_libraries(elf2rpl
excmd
2018-05-22 23:08:13 +01:00
fmt
zlibstatic)
2018-05-22 23:08:13 +01:00
2018-05-23 12:35:24 +01:00
install(TARGETS elf2rpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")