1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Add ffmpeg to vcpkg dependencies

This commit is contained in:
Elias Steurer 2020-09-10 17:32:24 +02:00
parent 06a4e9b312
commit d850a05aa8
2 changed files with 7 additions and 5 deletions

View File

@ -4,13 +4,14 @@ cd Common
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
git pull
git checkout 2bc6cd714
# master 10.09.2020 - 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
chmod +x bootstrap-vcpkg.sh
./bootstrap-vcpkg.sh
chmod +x vcpkg
if [[ "$OSTYPE" == "darwin"* ]]; then
./vcpkg install zlib libzip libzippp openssl-unix libzip breakpad --triplet x64-osx --recurse
./vcpkg install zlib libzip libzippp openssl-unix libzip breakpad ffmpeg[x264,vpx,mp3lame,opus] --triplet x64-osx --recurse
else
./vcpkg install zlib libzip libzippp openssl-unix libzip breakpad --triplet x64-linux --recurse
./vcpkg install zlib libzip libzippp openssl-unix libzip breakpad ffmpeg[x264,vpx,mp3lame,opus] --triplet x64-linux --recurse
fi

View File

@ -4,6 +4,7 @@ cd Common
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
git pull
git checkout 2bc6cd714
rem master 10.09.2020 - 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
call bootstrap-vcpkg.bat
vcpkg.exe install zlib libzip libzippp openssl breakpad --triplet x64-windows --recurse
vcpkg.exe install zlib libzip libzippp openssl breakpad ffmpeg[gpl,x264,vpx,mp3lame,opus] --triplet x64-windows --recurse