1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-06 10:39:53 +02:00
ScreenPlay/install_dependencies_linux_mac.sh
2020-08-10 21:57:55 +02:00

16 lines
461 B
Bash

git submodule update --init
git submodule update --recursive
cd Common
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
git pull
git checkout 2bc6cd714
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
else
./vcpkg install zlib libzip libzippp openssl-unix libzip breakpad --triplet x64-linux --recurse
fi