mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 18:42:29 +01:00
c6ac701875
# Conflicts: # ScreenPlay/CMakeLists.txt # ScreenPlay/src/util.cpp # install_dependencies_linux_mac.sh # install_dependencies_windows.bat
17 lines
513 B
Bash
17 lines
513 B
Bash
git submodule update --init
|
|
git submodule update --recursive
|
|
cd Common
|
|
git clone https://github.com/microsoft/vcpkg.git
|
|
cd vcpkg
|
|
git pull
|
|
# master 10.09.2020 - 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
|
|
git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4
|
|
chmod +x bootstrap-vcpkg.sh
|
|
./bootstrap-vcpkg.sh
|
|
chmod +x vcpkg
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
./vcpkg install openssl-unix sentry-native --triplet x64-osx --recurse
|
|
else
|
|
./vcpkg install openssl-unix sentry-native --triplet x64-linux --recurse
|
|
fi |