librw/tools/subrast/CMakeLists.txt

20 lines
453 B
CMake
Raw Normal View History

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