diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-05 19:51:36 +0100 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-05 20:49:57 +0100 |
commit | 0913aaa42a710b6b9d18119185925912a53295d9 (patch) | |
tree | b554509ad77029391d332fe8be5685e17ca1b473 /.ci/scripts | |
parent | CMake: Implement YUZU_USE_BUNDLED_FFMPEG (diff) | |
download | yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar.gz yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar.bz2 yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar.lz yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar.xz yuzu-0913aaa42a710b6b9d18119185925912a53295d9.tar.zst yuzu-0913aaa42a710b6b9d18119185925912a53295d9.zip |
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x | .ci/scripts/windows/docker.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.ci/scripts/windows/docker.sh b/.ci/scripts/windows/docker.sh index 2bc9f36ab..192a01fd8 100755 --- a/.ci/scripts/windows/docker.sh +++ b/.ci/scripts/windows/docker.sh @@ -42,3 +42,8 @@ done pip3 install pefile python3 .ci/scripts/windows/scan_dll.py package/*.exe "package/" python3 .ci/scripts/windows/scan_dll.py package/imageformats/*.dll "package/" + +# copy FFmpeg libraries +EXTERNALS_PATH="$(pwd)/build/externals" +FFMPEG_DLL_PATH="$(find ${EXTERNALS_PATH} -maxdepth 1 -type d | grep ffmpeg)/bin" +find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' |