2020-04-30 20:03:14 +02:00
|
|
|
git submodule update --init
|
|
|
|
git submodule update --recursive
|
2020-10-29 18:19:22 +01:00
|
|
|
cd ..
|
2020-10-29 18:52:37 +01:00
|
|
|
cd ..
|
|
|
|
git clone https://github.com/microsoft/vcpkg.git ScreenPlay-vcpkg
|
|
|
|
cd ScreenPlay-vcpkg
|
2020-04-30 20:03:14 +02:00
|
|
|
git pull
|
2021-01-25 17:04:36 +01:00
|
|
|
# master 25.01.2021 - fc0d6b28006e0607a6b9871641ec48925274e079
|
|
|
|
git checkout fc0d6b28006e0607a6b9871641ec48925274e079
|
2020-04-30 20:03:14 +02:00
|
|
|
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
|
2020-04-30 20:03:14 +02:00
|
|
|
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
|