mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Dep/Boost: Search for all binary compatible boost installations, not only the one exactly matching MSVC toolset
This commit is contained in:
@@ -22,7 +22,10 @@ if(WIN32)
|
||||
string(SUBSTRING "${MSVC_TOOLSET_VERSION}" ${_BOOST_MSVC_TOOLSET_VERSION_LENGTH} -1 _BOOST_MSVC_TOOLSET_VERSION_MINOR)
|
||||
|
||||
file(TO_CMAKE_PATH "${BOOST_ROOT}" BOOST_ROOT)
|
||||
set(BOOST_SEARCH_HINTS "${BOOST_ROOT}/lib${PLATFORM}-msvc-${_BOOST_MSVC_TOOLSET_VERSION_MAJOR}.${_BOOST_MSVC_TOOLSET_VERSION_MINOR}/cmake")
|
||||
while(_BOOST_MSVC_TOOLSET_VERSION_MINOR GREATER_EQUAL 0)
|
||||
list(APPEND BOOST_SEARCH_HINTS "${BOOST_ROOT}/lib${PLATFORM}-msvc-${_BOOST_MSVC_TOOLSET_VERSION_MAJOR}.${_BOOST_MSVC_TOOLSET_VERSION_MINOR}/cmake")
|
||||
math(EXPR _BOOST_MSVC_TOOLSET_VERSION_MINOR "${_BOOST_MSVC_TOOLSET_VERSION_MINOR} - 1" OUTPUT_FORMAT DECIMAL)
|
||||
endwhile()
|
||||
|
||||
unset(_BOOST_MSVC_TOOLSET_VERSION_LENGTH)
|
||||
unset(_BOOST_MSVC_TOOLSET_VERSION_MAJOR)
|
||||
|
||||
Reference in New Issue
Block a user