mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:41:49 +01:00
9 lines
251 B
CMake
9 lines
251 B
CMake
add_executable(wut-elf2rpl main.cpp)
|
|
target_include_directories(wut-elf2rpl PRIVATE
|
|
${ZLIB_INCLUDE_DIR})
|
|
target_link_libraries(wut-elf2rpl
|
|
fmt
|
|
${ZLIB_LIBRARIES})
|
|
|
|
install(TARGETS wut-elf2rpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|