mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-15 23:29:58 +00:00
6 lines
222 B
CMake
6 lines
222 B
CMake
function(copy_yuzu_SDL_deps target_dir)
|
|
include(WindowsCopyFiles)
|
|
set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/")
|
|
windows_copy_files(${target_dir} ${SDL2_DLL_DIR} ${DLL_DEST} SDL2.dll)
|
|
endfunction(copy_yuzu_SDL_deps)
|