mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
12 lines
346 B
CMake
12 lines
346 B
CMake
|
function(copy_citra_FFmpeg_deps target_dir)
|
||
|
include(WindowsCopyFiles)
|
||
|
set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/")
|
||
|
windows_copy_files(${target_dir} ${FFMPEG_DIR}/bin ${DLL_DEST}
|
||
|
avcodec*.dll
|
||
|
avformat*.dll
|
||
|
avutil*.dll
|
||
|
swresample*.dll
|
||
|
swscale*.dll
|
||
|
)
|
||
|
endfunction(copy_citra_FFmpeg_deps)
|