mirror of
https://github.com/NoelFB/tiny_link.git
synced 2024-11-25 18:18:56 +08:00
Merge pull request #1 from sherjilozair/fix
Copy SDL2_DLL only if it exists
This commit is contained in:
commit
be0000ab4c
|
@ -38,7 +38,9 @@ target_link_libraries(game blah)
|
||||||
# copy SDL2 to the build directory
|
# copy SDL2 to the build directory
|
||||||
set(SDL2_DLL "" CACHE FILEPATH "SDL2 DLL Path")
|
set(SDL2_DLL "" CACHE FILEPATH "SDL2 DLL Path")
|
||||||
if (SDL2_ENABLED)
|
if (SDL2_ENABLED)
|
||||||
add_custom_command(
|
if (EXISTS ${SDL2_DLL})
|
||||||
TARGET game POST_BUILD
|
add_custom_command(
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy ${SDL2_DLL} $<TARGET_FILE_DIR:game>)
|
TARGET game POST_BUILD
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E copy ${SDL2_DLL} $<TARGET_FILE_DIR:game>)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
Loading…
Reference in New Issue
Block a user