From 92857eef2396faf6e972870a05e764b825e82822 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 24 Apr 2017 10:50:38 -0400 Subject: FindBoost: Fix library directory for VS 2017 Boost 1.64 now names the library directory `14.1`, not `15.0`. --- Modules/FindBoost.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12