mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
FindBoost: Add support for MSVC toolset version 14.2
Generalize the logic to express compatibility among 14.x versions.
This commit is contained in:
@@ -466,8 +466,17 @@ function(_Boost_GUESS_COMPILER_PREFIX _ret)
|
||||
elseif (GHSMULTI)
|
||||
set(_boost_COMPILER "-ghs")
|
||||
elseif("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC")
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 141)
|
||||
set(_boost_COMPILER "-vc141;-vc140")
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 150)
|
||||
# Not yet known.
|
||||
set(_boost_COMPILER "")
|
||||
elseif(MSVC_TOOLSET_VERSION GREATER_EQUAL 140)
|
||||
# MSVC toolset 14.x versions are forward compatible.
|
||||
set(_boost_COMPILER "")
|
||||
foreach(v 9 8 7 6 5 4 3 2 1 0)
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 14${v})
|
||||
list(APPEND _boost_COMPILER "-vc14${v}")
|
||||
endif()
|
||||
endforeach()
|
||||
elseif(MSVC_TOOLSET_VERSION GREATER_EQUAL 80)
|
||||
set(_boost_COMPILER "-vc${MSVC_TOOLSET_VERSION}")
|
||||
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 13.10)
|
||||
@@ -1077,9 +1086,15 @@ function(_Boost_UPDATE_WINDOWS_LIBRARY_SEARCH_DIRS_WITH_PREBUILT_PATHS component
|
||||
else()
|
||||
set(_arch_suffix 32)
|
||||
endif()
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 141)
|
||||
list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-14.1)
|
||||
list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-14.0)
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 150)
|
||||
# Not yet known.
|
||||
elseif(MSVC_TOOLSET_VERSION GREATER_EQUAL 140)
|
||||
# MSVC toolset 14.x versions are forward compatible.
|
||||
foreach(v 9 8 7 6 5 4 3 2 1 0)
|
||||
if(MSVC_TOOLSET_VERSION GREATER_EQUAL 14${v})
|
||||
list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-14.${v})
|
||||
endif()
|
||||
endforeach()
|
||||
elseif(MSVC_TOOLSET_VERSION GREATER_EQUAL 80)
|
||||
math(EXPR _toolset_major_version "${MSVC_TOOLSET_VERSION} / 10")
|
||||
list(APPEND ${componentlibvar} ${basedir}/lib${_arch_suffix}-msvc-${_toolset_major_version}.0)
|
||||
|
||||
Reference in New Issue
Block a user