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:
authortamasmeszaros <meszaros.q@gmail.com>2021-02-04 22:31:50 +0300
committertamasmeszaros <meszaros.q@gmail.com>2021-02-04 22:31:50 +0300
commit6f89da1f394561c7338676a1c8e8e72faeb85aad (patch)
tree1540fb1ed514c7147e85a7f26c4697a28c6c58f6
parent819a58579ed5a5449b74f3de139cfa22df25434f (diff)
Disable libicu for boost-regex
Should have been disabled from the beginning
-rw-r--r--deps/deps-linux.cmake1
-rw-r--r--deps/deps-macos.cmake1
-rw-r--r--deps/deps-windows.cmake1
3 files changed, 3 insertions, 0 deletions
diff --git a/deps/deps-linux.cmake b/deps/deps-linux.cmake
index 2da289097..35522504c 100644
--- a/deps/deps-linux.cmake
+++ b/deps/deps-linux.cmake
@@ -26,6 +26,7 @@ ExternalProject_Add(dep_boost
variant=release
threading=multi
boost.locale.icu=off
+ --disable-icu
cflags=-fPIC
cxxflags=-fPIC
install
diff --git a/deps/deps-macos.cmake b/deps/deps-macos.cmake
index bf9501ca0..53ba008c3 100644
--- a/deps/deps-macos.cmake
+++ b/deps/deps-macos.cmake
@@ -33,6 +33,7 @@ ExternalProject_Add(dep_boost
variant=release
threading=multi
boost.locale.icu=off
+ --disable-icu
"cflags=-fPIC -mmacosx-version-min=${DEP_OSX_TARGET}"
"cxxflags=-fPIC -mmacosx-version-min=${DEP_OSX_TARGET}"
"mflags=-fPIC -mmacosx-version-min=${DEP_OSX_TARGET}"
diff --git a/deps/deps-windows.cmake b/deps/deps-windows.cmake
index 81d52b842..c0d80bb29 100644
--- a/deps/deps-windows.cmake
+++ b/deps/deps-windows.cmake
@@ -76,6 +76,7 @@ ExternalProject_Add(dep_boost
variant=release
threading=multi
boost.locale.icu=off
+ --disable-icu
"${DEP_BOOST_DEBUG}" release install
INSTALL_COMMAND "" # b2 does that already
)