Merge branch 'trunk' of github.com:lrre-foss/rnr into trunk

This commit is contained in:
floralrainfall 2023-07-17 01:04:41 -04:00
commit 580399eeec
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ endif()
qt_add_executable(Player ${SOURCE} ${HEADER})
if(WIN32 OR MINGW)
if(MINGW)
add_custom_command(TARGET Player POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy -t $<TARGET_FILE_DIR:Player> $<TARGET_RUNTIME_DLLS:Player>
COMMAND_EXPAND_LISTS

View File

@ -9,7 +9,7 @@ endif()
add_executable(Server ${SOURCE} ${HEADER})
if(WIN32 OR MINGW)
if(MINGW)
add_custom_command(TARGET Server POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy -t $<TARGET_FILE_DIR:Server> $<TARGET_RUNTIME_DLLS:Server>
COMMAND_EXPAND_LISTS

View File

@ -18,7 +18,7 @@ endif()
qt_add_executable(Studio ${SOURCE} ${HEADER})
if(WIN32 OR MINGW)
if(MINGW)
add_custom_command(TARGET Studio POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy -t $<TARGET_FILE_DIR:Studio> $<TARGET_RUNTIME_DLLS:Studio>
COMMAND_EXPAND_LISTS