1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-23 03:02:30 +01:00
ScreenPlay/Tools/install_dependencies_linux_mac.sh

20 lines
545 B
Bash
Raw Normal View History

git submodule update --init
git submodule update --recursive
cd ..
cd ..
git clone https://github.com/microsoft/vcpkg.git ScreenPlay-vcpkg
cd ScreenPlay-vcpkg
git pull
# master 27.03.2021 - 9f6157a
git checkout 9f6157a
chmod +x bootstrap-vcpkg.sh
./bootstrap-vcpkg.sh
chmod +x vcpkg
if [[ "$OSTYPE" == "darwin"* ]]; then
2020-10-30 15:37:00 +01:00
./vcpkg install openssl-unix sentry-native doctest benchmark --triplet x64-osx --recurse
else
2020-10-30 15:37:00 +01:00
./vcpkg install openssl-unix sentry-native doctest benchmark --triplet x64-linux --recurse
2021-01-25 17:04:36 +01:00
fi
./vcpkg upgrade --no-dry-run