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:
authorPascal de Bruijn <pmjdebruijn@pcode.nl>2020-12-18 17:32:33 +0300
committerPascal de Bruijn <pmjdebruijn@pcode.nl>2020-12-18 17:32:33 +0300
commit80cb022901c7df22fc746bb789e2575562489bea (patch)
tree433fa69213adb6e6ab17e3d96578097ec2df068c /CMakeLists.txt
parentce32d68368186eaceb84682e0307acf54af0776f (diff)
CMakeLists: set MINIMUM_BOOST_VERSION to 1.66.0 (due to Base64, #3375)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c15371c9a..2a4fbb8b2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -267,8 +267,8 @@ endif()
#set(Boost_DEBUG ON)
# set(Boost_COMPILER "-mgw81")
if(NOT WIN32)
- # boost::process was introduced first in version 1.64.0
- set(MINIMUM_BOOST_VERSION "1.64.0")
+ # boost::beast::detail::base64 was introduced first in version 1.66.0
+ set(MINIMUM_BOOST_VERSION "1.66.0")
endif()
set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time")
find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components})