mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 22:41:48 +01:00
10 lines
198 B
CMake
10 lines
198 B
CMake
|
project(rplimportgen)
|
||
|
|
||
|
add_executable(rplimportgen
|
||
|
rplimportgen.cpp)
|
||
|
|
||
|
target_link_libraries(rplimportgen
|
||
|
zlib)
|
||
|
|
||
|
install(TARGETS rplimportgen RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|