mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 22:41:48 +01:00
19 lines
309 B
CMake
19 lines
309 B
CMake
project(readrpl)
|
|
|
|
add_executable(readrpl
|
|
generate_exports_def.cpp
|
|
generate_exports_def.h
|
|
main.cpp
|
|
print.cpp
|
|
print.h
|
|
readrpl.h
|
|
verify.cpp
|
|
verify.h)
|
|
|
|
target_link_libraries(readrpl
|
|
excmd
|
|
fmt
|
|
zlibstatic)
|
|
|
|
install(TARGETS readrpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|