fix(Core): revert Boost minimum version change (#6975)
This commit is contained in:
parent
b5bdb7decb
commit
7449496bb5
8
deps/boost/CMakeLists.txt
vendored
8
deps/boost/CMakeLists.txt
vendored
@ -28,8 +28,12 @@ endif()
|
||||
|
||||
include (CheckCXXSourceCompiles)
|
||||
|
||||
# C++20 requires Boost 1.74 to build
|
||||
set(BOOST_REQUIRED_VERSION 1.74)
|
||||
if (WIN32)
|
||||
# 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)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user