mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 14:22:38 +01:00
d44b7f774e
* I did this mainly to remove some build warnings that were showing up in cppformat v2 underneath clang (the default macOS compiler) * At this point, WUT will build on macOS with no warnings whatsoever.
15 lines
374 B
CMake
15 lines
374 B
CMake
project(readrpl)
|
|
|
|
file(GLOB_RECURSE SOURCE_FILES *.cpp)
|
|
file(GLOB_RECURSE HEADER_FILES *.h)
|
|
|
|
add_executable(readrpl ${SOURCE_FILES} ${HEADER_FILES})
|
|
set_target_properties(readrpl PROPERTIES FOLDER tools)
|
|
|
|
target_link_libraries(readrpl PRIVATE
|
|
${EXCMD_LINK}
|
|
${FMTLIB_LINK}
|
|
${ZLIB_LINK})
|
|
|
|
install(TARGETS readrpl RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
|