1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-03-11 08:10:09 +01:00

CMake: Copy support files into build directory

This makes it possible to run bygfoot from the build directory.
This commit is contained in:
Tom Stellard 2021-03-04 18:55:13 -08:00 committed by Tom Stellard
parent 95a1507f6a
commit 080dcfe308

View File

@ -160,3 +160,8 @@ if (GETTEXT_FOUND)
bygfoot.mo)
endforeach()
endif()
add_custom_command(TARGET bygfoot POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_SOURCE_DIR}/support_files
${CMAKE_BINARY_DIR}/support_files)