diff options
Diffstat (limited to '')
| -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 | |||
| 42 | pip3 install pefile | 42 | pip3 install pefile |
| 43 | python3 .ci/scripts/windows/scan_dll.py package/*.exe "package/" | 43 | python3 .ci/scripts/windows/scan_dll.py package/*.exe "package/" |
| 44 | python3 .ci/scripts/windows/scan_dll.py package/imageformats/*.dll "package/" | 44 | python3 .ci/scripts/windows/scan_dll.py package/imageformats/*.dll "package/" |
| 45 | |||
| 46 | # copy FFmpeg libraries | ||
| 47 | EXTERNALS_PATH="$(pwd)/build/externals" | ||
| 48 | FFMPEG_DLL_PATH="$(find ${EXTERNALS_PATH} -maxdepth 1 -type d | grep ffmpeg)/bin" | ||
| 49 | find ${FFMPEG_DLL_PATH} -type f -regex ".*\.dll" -exec cp -v {} package/ ';' | ||