diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-07-28 15:05:12 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-24 13:02:52 +0100 |
commit | 10e3016e85f2a3a3cc0ec659eb2eae57ffe07be2 (patch) | |
tree | b57ad2c9885020abdd72cde2de80795f0c4f2695 /dep | |
parent | 835098597559f3bc1d5974e3376cd84875669fe9 (diff) |
Dep/Boost: Set boost msvc version on Windows to 14.2
14.2 is the only supported one (Visual Studio 2019)
(cherry picked from commit 2ea511b9f45d2e8ad33824fd76e848dace264469)
Diffstat (limited to 'dep')
-rw-r--r-- | dep/boost/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dep/boost/CMakeLists.txt b/dep/boost/CMakeLists.txt index 751fee74e64..3c94748357b 100644 --- a/dep/boost/CMakeLists.txt +++ b/dep/boost/CMakeLists.txt @@ -13,8 +13,7 @@ if(WIN32) if(DEFINED ENV{BOOST_ROOT}) set(BOOST_ROOT $ENV{BOOST_ROOT}) list(APPEND BOOST_LIBRARYDIR - ${BOOST_ROOT}/lib${PLATFORM}-msvc-14.2 - ${BOOST_ROOT}/lib${PLATFORM}-msvc-14.1 ) + ${BOOST_ROOT}/lib${PLATFORM}-msvc-14.2 ) elseif(NOT DEFINED Boost_DIR AND NOT DEFINED BOOST_ROOT AND NOT DEFINED BOOSTROOT) message(FATAL_ERROR "No BOOST_ROOT environment variable could be found! Please make sure it is set and the points to your Boost installation.") endif() |