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-04-30 20:18:27 +02:00
|
|
|
git checkout 2bc6cd714
|
2020-04-30 20:03:14 +02:00
|
|
|
chmod +x bootstrap-vcpkg.sh
|
|
|
|
./bootstrap-vcpkg.sh
|
|
|
|
chmod +x vcpkg
|
|
|
|
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
2020-04-30 20:18:27 +02:00
|
|
|
./vcpkg install zlib libzip libzippp nlohmann-json openssl-unix libzip breakpad --triplet x64-osx --recurse
|
2020-04-30 20:03:14 +02:00
|
|
|
else
|
2020-04-30 20:18:27 +02:00
|
|
|
./vcpkg install zlib libzip libzippp nlohmann-json openssl-unix libzip breakpad --triplet x64-linux --recurse
|
2020-04-30 20:03:14 +02:00
|
|
|
fi
|