Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcp <cp>2021-04-12 20:52:25 +0300
committerLukas Matena <lukasmatena@seznam.cz>2021-04-13 13:25:25 +0300
commit279113900209ba624c71020fde22ea9ac089e04e (patch)
treed696c0a006f434da34736f365b27d9b26ab708cd /deps/deps-windows.cmake
parente8643125d8e682d03b36b34082e1a3dc693f80ba (diff)
Fix boost dependency url.
Original host's lifetime has ended, see here: https://github.com/boostorg/boost/issues/502 This is PR #6349, amended by @lukasmatena who added the changes for platforms other than Windows.
Diffstat (limited to 'deps/deps-windows.cmake')
-rw-r--r--deps/deps-windows.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/deps-windows.cmake b/deps/deps-windows.cmake
index c0d80bb29..fc9f55f5f 100644
--- a/deps/deps-windows.cmake
+++ b/deps/deps-windows.cmake
@@ -55,7 +55,7 @@ endmacro()
ExternalProject_Add(dep_boost
EXCLUDE_FROM_ALL 1
- URL "https://dl.bintray.com/boostorg/release/1.75.0/source/boost_1_75_0.tar.gz"
+ URL "https://boostorg.jfrog.io/artifactory/main/release/1.75.0/source/boost_1_75_0.tar.gz"
URL_HASH SHA256=aeb26f80e80945e82ee93e5939baebdca47b9dee80a07d3144be1e1a6a66dd6a
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND bootstrap.bat
@@ -295,4 +295,5 @@ if (${DEP_DEBUG})
COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
WORKING_DIRECTORY "${BINARY_DIR}"
)
-endif () \ No newline at end of file
+endif ()
+