2020-04-30 20:03:14 +02:00
|
|
|
git submodule update --init
|
|
|
|
git submodule update --recursive
|
|
|
|
cd Common
|
|
|
|
git clone https://github.com/microsoft/vcpkg.git
|
|
|
|
cd vcpkg
|
|
|
|
git pull
|
2020-09-10 17:32:24 +02:00
|
|
|
# master 10.09.2020 - 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
|
|
|
|
git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
|
2020-04-30 20:03:14 +02:00
|
|
|
chmod +x bootstrap-vcpkg.sh
|
|
|
|
./bootstrap-vcpkg.sh
|
|
|
|
chmod +x vcpkg
|
|
|
|
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
2020-09-18 16:17:59 +02:00
|
|
|
./vcpkg install openssl-unix sentry-native --triplet x64-osx --recurse
|
2020-04-30 20:03:14 +02:00
|
|
|
else
|
2020-09-18 16:17:59 +02:00
|
|
|
./vcpkg install openssl-unix sentry-native --triplet x64-linux --recurse
|
2020-04-30 20:03:14 +02:00
|
|
|
fi
|