fix(Core): revert Boost minimum version change (#6975)
This commit is contained in:
8
deps/boost/CMakeLists.txt
vendored
8
deps/boost/CMakeLists.txt
vendored
@@ -28,8 +28,12 @@ endif()
|
|||||||
|
|
||||||
include (CheckCXXSourceCompiles)
|
include (CheckCXXSourceCompiles)
|
||||||
|
|
||||||
# C++20 requires Boost 1.74 to build
|
if (WIN32)
|
||||||
set(BOOST_REQUIRED_VERSION 1.74)
|
# On windows the requirements are higher according to the wiki.
|
||||||
|
set(BOOST_REQUIRED_VERSION 1.70)
|
||||||
|
else()
|
||||||
|
set(BOOST_REQUIRED_VERSION 1.67)
|
||||||
|
endif()
|
||||||
|
|
||||||
find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem program_options iostreams regex)
|
find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem program_options iostreams regex)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user