diff options
| author | 2020-10-26 23:02:42 -0700 | |
|---|---|---|
| committer | 2020-10-26 23:02:42 -0700 | |
| commit | d33399e1f46a10490b586196c6d0db0f04be4206 (patch) | |
| tree | 8b2e1d98bf832049936ab931fc3a120e70bc36c2 /CMakeModules | |
| parent | Merge pull request #4832 from bunnei/cpu-manager-microprofile-fix (diff) | |
| parent | video_core: NVDEC Implementation (diff) | |
| download | yuzu-d33399e1f46a10490b586196c6d0db0f04be4206.tar.gz yuzu-d33399e1f46a10490b586196c6d0db0f04be4206.tar.xz yuzu-d33399e1f46a10490b586196c6d0db0f04be4206.zip | |
Merge pull request #4729 from ameerj/nvdec-prod
video_core: NVDEC Implementation
Diffstat (limited to 'CMakeModules')
| -rw-r--r-- | CMakeModules/CopyYuzuFFmpegDeps.cmake | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeModules/CopyYuzuFFmpegDeps.cmake b/CMakeModules/CopyYuzuFFmpegDeps.cmake new file mode 100644 index 000000000..cca1eeeab --- /dev/null +++ b/CMakeModules/CopyYuzuFFmpegDeps.cmake | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | function(copy_yuzu_FFmpeg_deps target_dir) | ||
| 2 | include(WindowsCopyFiles) | ||
| 3 | set(DLL_DEST "${CMAKE_BINARY_DIR}/bin/$<CONFIG>/") | ||
| 4 | windows_copy_files(${target_dir} ${FFMPEG_DLL_DIR} ${DLL_DEST} | ||
| 5 | avcodec-58.dll | ||
| 6 | avutil-56.dll | ||
| 7 | swresample-3.dll | ||
| 8 | swscale-5.dll | ||
| 9 | ) | ||
| 10 | endfunction(copy_yuzu_FFmpeg_deps) | ||