mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 02:22:28 +01:00
16 lines
489 B
Bash
16 lines
489 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 nlohmann-json openssl-unix libzip breakpad --triplet x64-osx --recurse
|
|
else
|
|
./vcpkg install zlib libzip libzippp nlohmann-json openssl-unix libzip breakpad --triplet x64-linux --recurse
|
|
fi |