CopyYuzuFFmpegDeps.cmake 390 B

1234567
  1. function(copy_yuzu_FFmpeg_deps target_dir)
  2. include(WindowsCopyFiles)
  3. set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/")
  4. file(READ "${FFmpeg_PATH}/requirements.txt" FFmpeg_REQUIRED_DLLS)
  5. string(STRIP "${FFmpeg_REQUIRED_DLLS}" FFmpeg_REQUIRED_DLLS)
  6. windows_copy_files(${target_dir} ${FFmpeg_DLL_DIR} ${DLL_DEST} ${FFmpeg_REQUIRED_DLLS})
  7. endfunction(copy_yuzu_FFmpeg_deps)