diff --git a/install-dependencies.bat b/install-dependencies.bat deleted file mode 100644 index d4780a0d..00000000 --- a/install-dependencies.bat +++ /dev/null @@ -1,10 +0,0 @@ -git submodule update --init -git submodule update --recursive -cd Common -git clone https://github.com/microsoft/vcpkg.git -cd vcpkg -git pull -git checkout origin/master -call bootstrap-vcpkg.bat -vcpkg.exe install libzippp:x64-windows nlohmann-json:x64-windows openssl:x64-windows -pause \ No newline at end of file diff --git a/install-dependencies.sh b/install-dependencies.sh deleted file mode 100755 index ed40a876..00000000 --- a/install-dependencies.sh +++ /dev/null @@ -1,16 +0,0 @@ -git submodule update --init -git submodule update --recursive -cd Common -git clone https://github.com/microsoft/vcpkg.git -cd vcpkg -git pull -git checkout origin/master -chmod +x bootstrap-vcpkg.sh -./bootstrap-vcpkg.sh -chmod +x vcpkg - -if [[ "$OSTYPE" == "darwin"* ]]; then -./vcpkg install libzippp:x64-osx nlohmann-json:x64-osx openssl-unix:x64-osx libzip:x64-osx -else -./vcpkg install libzippp:x64-linux nlohmann-json:x64-linux openssl-unix:x64-linux libzip:x64-linux -fi \ No newline at end of file diff --git a/install_dependencies_linux_mac.sh b/install_dependencies_linux_mac.sh index ed40a876..f3ff643b 100644 --- a/install_dependencies_linux_mac.sh +++ b/install_dependencies_linux_mac.sh @@ -4,13 +4,13 @@ cd Common git clone https://github.com/microsoft/vcpkg.git cd vcpkg git pull -git checkout origin/master +git checkout 2bc6cd714 chmod +x bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh chmod +x vcpkg if [[ "$OSTYPE" == "darwin"* ]]; then -./vcpkg install libzippp:x64-osx nlohmann-json:x64-osx openssl-unix:x64-osx libzip:x64-osx +./vcpkg install zlib libzip libzippp nlohmann-json openssl-unix libzip breakpad --triplet x64-osx --recurse else -./vcpkg install libzippp:x64-linux nlohmann-json:x64-linux openssl-unix:x64-linux libzip:x64-linux +./vcpkg install zlib libzip libzippp nlohmann-json openssl-unix libzip breakpad --triplet x64-linux --recurse fi \ No newline at end of file diff --git a/install_dependencies_windows.bat b/install_dependencies_windows.bat index fd7c5b32..4335987d 100644 --- a/install_dependencies_windows.bat +++ b/install_dependencies_windows.bat @@ -7,4 +7,3 @@ git pull git checkout 2bc6cd714 call bootstrap-vcpkg.bat vcpkg.exe install zlib libzip libzippp nlohmann-json openssl breakpad --triplet x64-windows --recurse -pause \ No newline at end of file