Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Boost build for MVSC 15.8.2 #438

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Patches/Boost/Common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES GNU)
elseif(CMAKE_CXX_COMPILER_ID MATCHES PGI)
set(BOOST_TOOLSET pgi)
elseif(CMAKE_CXX_COMPILER_ID MATCHES MSVC)
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19.10)
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19.15)
set(BOOST_TOOLSET msvc-14.15)
elseif(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19.10)
set(BOOST_TOOLSET msvc-14.1)
elseif(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19)
set(BOOST_TOOLSET msvc-14.0)
Expand Down