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 d3e7bda commit ffeafb8Copy full SHA for ffeafb8
cmake/modules/RootCPack.cmake
@@ -81,6 +81,8 @@ if(MSVC)
81
math(EXPR VS_VERSION "${VC_MAJOR} - 3")
82
elseif(MSVC_VERSION LESS 1950)
83
math(EXPR VS_VERSION "${VC_MAJOR} - 2")
84
+ elseif(MSVC_VERSION LESS 1960)
85
+ math(EXPR VS_VERSION "${VC_MAJOR} - 1")
86
else()
87
message(FATAL_ERROR "MSVC_VERSION ${MSVC_VERSION} not implemented")
88
endif()
interpreter/cling/lib/Utils/PlatformWin.cpp
@@ -386,6 +386,8 @@ static int GetVisualStudioVersionCompiledWith() {
386
return 16;
387
#elif (_MSC_VER < 1950)
388
return 17;
389
+#elif (_MSC_VER < 1960)
390
+ return 18;
391
#else
392
#error "Unsupported/Untested _MSC_VER"
393
// As of now this is what is should be...have fun!
0 commit comments