aboutsummaryrefslogtreecommitdiff
path: root/dep
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-02-14 12:43:57 +0100
committerShauren <shauren.trinity@gmail.com>2022-02-14 13:37:45 +0100
commit85bdeed51e09bd34a796a39e192c6454567c4514 (patch)
tree66d592bf47a7d08645fda1ff94ae42e2b8d78a3d /dep
parent93735ae3bd926d13cff43ffce1f0640a2693649f (diff)
Dep: Raise required boost versions to 1.73 on windows and 1.71 on linux and remove compatibility code for unsupported versions
(cherry picked from commit f6e72494f185d096f2cce70e646f0761e67e1bc7)
Diffstat (limited to 'dep')
-rw-r--r--dep/boost/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt
index 7af1e7be31f..65d5c9355e4 100644
--- a/dep/boost/CMakeLists.txt
+++ b/dep/boost/CMakeLists.txt
@@ -30,9 +30,9 @@ include (CheckCXXSourceCompiles)
if (WIN32)
# On windows the requirements are higher according to the wiki.
- set(BOOST_REQUIRED_VERSION 1.70)
+ set(BOOST_REQUIRED_VERSION 1.73)
else()
- set(BOOST_REQUIRED_VERSION 1.67)
+ set(BOOST_REQUIRED_VERSION 1.71)
endif()
find_package(Boost ${BOOST_REQUIRED_VERSION} REQUIRED system filesystem program_options iostreams regex)