diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-02-14 12:43:57 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-14 12:43:57 +0100 |
commit | f6e72494f185d096f2cce70e646f0761e67e1bc7 (patch) | |
tree | 0009a721406f3a97b08a578432a5dd0b7dfb1061 /dep | |
parent | a6dd3a1946be27acab80b78b71eecae7dbad82e6 (diff) |
Dep: Raise required boost versions to 1.73 on windows and 1.71 on linux and remove compatibility code for unsupported versions
Diffstat (limited to 'dep')
-rw-r--r-- | dep/boost/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt index 3c94748357b..80c6c773a1f 100644 --- a/dep/boost/CMakeLists.txt +++ b/dep/boost/CMakeLists.txt @@ -32,9 +32,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) |