diff --git a/.travis/script.sh b/.travis/script.sh index a7ffe5f5d..3c600b41b 100644 --- a/.travis/script.sh +++ b/.travis/script.sh @@ -8,7 +8,7 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then # Make make -j$(sysctl -n hw.ncpu) - BUNDLE_PATH=$(find . -name "Olive.app") + BUNDLE_PATH=$(find . -name "*.app") # Move Qt deps into bundle macdeployqt $BUNDLE_PATH diff --git a/appveyor-build.bat b/appveyor-build.bat index 9bbb5a0af..bdce3e54b 100644 --- a/appveyor-build.bat +++ b/appveyor-build.bat @@ -32,6 +32,11 @@ cd olive C:\Qt\5.13.0\msvc2015_64\bin\windeployqt olive-editor.exe cd .. +REM Copy FFmpeg/OCIO/OIIO libraries in +copy ffmpeg-4.2-win64-shared\bin\*.dll olive\ +copy ocio-v1.1.1-win64-shared\bin\*.dll olive\ +copy oiio-v2.3.0-win64-shared\bin\*.dll olive\ + REM Store the Git hash as a variable git rev-parse --short=7 HEAD > shorthash.txt set /p HASH= < shorthash.txt