librw/tools/subrast/CMakeLists.txt

17 lines
351 B
CMake
Raw Normal View History

add_executable(subrast WIN32
2021-03-23 17:00:09 +09:00
main.cpp subrast.cpp
)
target_link_libraries(subrast
PUBLIC
librw::skeleton
librw::librw
2021-03-23 17:00:09 +09:00
)
2021-06-22 19:47:36 +02:00
2021-07-03 14:31:03 +01:00
add_custom_command(
TARGET subrast POST_BUILD
COMMAND "${CMAKE_COMMAND}" -E copy_directory "${CMAKE_CURRENT_SOURCE_DIR}/files" "$<TARGET_FILE_DIR:subrast>/files"
)
2021-06-22 19:47:36 +02:00
librw_platform_target(subrast)