1
0
mirror of https://github.com/aap/librw.git synced 2025-03-15 22:35:37 +00:00
librw/tools/lights/CMakeLists.txt

18 lines
352 B
CMake
Raw Normal View History

add_executable(lights WIN32
main.cpp
lights.cpp
2021-03-23 17:00:09 +09:00
)
target_link_libraries(lights
PRIVATE
librw::skeleton
librw::librw
2021-03-23 17:00:09 +09:00
)
2021-03-26 23:33:38 +01:00
add_custom_command(
TARGET lights POST_BUILD
COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${CMAKE_CURRENT_SOURCE_DIR}/checker.dff" "$<TARGET_FILE_DIR:lights>"
)
2021-06-22 19:47:36 +02:00
librw_platform_target(lights)