We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 914e7ae commit 270337fCopy full SHA for 270337f
LSLCMake.cmake
@@ -254,9 +254,11 @@ if(WIN32 AND MSVC)
254
elseif(MSVC_VERSION EQUAL 1900)
255
set(VCYEAR 2015)
256
set(_vs_ver 14.0)
257
- elseif(MSVC_VERSION GREATER 1910 AND MSVC_VERSION LESS 1919)
+ elseif(MSVC_VERSION GREATER 1910 AND MSVC_VERSION LESS 1929)
258
set(VCYEAR 2017)
259
set(_vs_ver 14.1)
260
+ # Also VS 2019, but it's binary compatible with 2017 so Boost
261
+ # and Qt still use the 2017 binaries
262
else()
263
message(WARNING "You're using an untested Visual C++ compiler (MSVC_VERSION: ${MSVC_VERSION}).")
264
endif()
0 commit comments