diff --git a/Tools/install_dependencies_linux_mac.sh b/Tools/install_dependencies_linux_mac.sh index 9fa4650a..c2ad318a 100644 --- a/Tools/install_dependencies_linux_mac.sh +++ b/Tools/install_dependencies_linux_mac.sh @@ -5,8 +5,8 @@ cd .. git clone https://github.com/microsoft/vcpkg.git ScreenPlay-vcpkg cd ScreenPlay-vcpkg git pull -# master 10.09.2020 - 18ab4b72a26284f0df28295ce7bf9b21c96f20f4 -git checkout 18ab4b72a26284f0df28295ce7bf9b21c96f20f4 +# master 25.01.2021 - fc0d6b28006e0607a6b9871641ec48925274e079 +git checkout fc0d6b28006e0607a6b9871641ec48925274e079 chmod +x bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh chmod +x vcpkg @@ -15,4 +15,6 @@ if [[ "$OSTYPE" == "darwin"* ]]; then ./vcpkg install openssl-unix sentry-native doctest benchmark --triplet x64-osx --recurse else ./vcpkg install openssl-unix sentry-native doctest benchmark --triplet x64-linux --recurse -fi \ No newline at end of file +fi + +./vcpkg upgrade --no-dry-run \ No newline at end of file diff --git a/Tools/install_dependencies_windows.bat b/Tools/install_dependencies_windows.bat index bcef5f9c..8bbff678 100644 --- a/Tools/install_dependencies_windows.bat +++ b/Tools/install_dependencies_windows.bat @@ -5,12 +5,13 @@ cd .. git clone https://github.com/microsoft/vcpkg.git ScreenPlay-vcpkg cd ScreenPlay-vcpkg git pull -rem master 26.12.2020 - a8ac047e6c40b806ac89ac4d7281d45d7c0aaf29 -git checkout a8ac047e6c40b806ac89ac4d7281d45d7c0aaf29 +rem master 25.01.2021 - fc0d6b28006e0607a6b9871641ec48925274e079 +git checkout fc0d6b28006e0607a6b9871641ec48925274e079 call bootstrap-vcpkg.bat rem Install vcpkg dependencies vcpkg.exe install openssl sentry-native doctest benchmark --triplet x64-windows --recurse +vcpkg.exe upgrade --no-dry-run cd .. cd ScreenPlay