cmake : copy sdl3.dll to directory where exe exists (since sdl3 is shared library)
This commit is contained in:
parent
f2198ef27d
commit
45420b340e
|
@ -30,4 +30,9 @@ add_executable(shadps4
|
||||||
|
|
||||||
find_package(OpenGL REQUIRED)
|
find_package(OpenGL REQUIRED)
|
||||||
|
|
||||||
target_link_libraries(shadps4 PUBLIC fmt spdlog IMGUI SDL3-shared ${OPENGL_LIBRARY})
|
target_link_libraries(shadps4 PUBLIC fmt spdlog IMGUI SDL3-shared ${OPENGL_LIBRARY})
|
||||||
|
|
||||||
|
add_custom_command(TARGET shadps4 POST_BUILD
|
||||||
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||||
|
$<TARGET_FILE:SDL3-shared>
|
||||||
|
$<TARGET_FILE_DIR:shadps4>)
|
Loading…
Reference in New Issue