summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-04-24 14:50:38 (GMT)
committerBrad King <brad.king@kitware.com>2017-04-24 14:51:08 (GMT)
commit92857eef2396faf6e972870a05e764b825e82822 (patch)
treeb76eb8b76645925e5e5bd58ec3a34e331375cc9b
parentb99fbf3b16449a6027e90ed7f01f240761157332 (diff)
downloadCMake-92857eef2396faf6e972870a05e764b825e82822.zip
CMake-92857eef2396faf6e972870a05e764b825e82822.tar.gz
CMake-92857eef2396faf6e972870a05e764b825e82822.tar.bz2
FindBoost: Fix library directory for VS 2017
Boost 1.64 now names the library directory `14.1`, not `15.0`.
-rw-r--r--Modules/FindBoost.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBoost.cmake b/Modules/FindBoost.cmake
index 52de6fc..e2a5860 100644
--- a/Modules/FindBoost.cmake
+++ b/Modules/FindBoost.cmake
@@ -901,7 +901,7 @@ function(_Boost_UPDATE_WINDOWS_LIBRARY_SEARCH_DIRS_WITH_PREBUILT_PATHS component
set(_arch_suffix 32)
endif()
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.10)
- list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-15.0)
+ list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-14.1)
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19)
list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-14.0)
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 18)