allow msvc 17.7.0 (1937) for builds

develop
Kelly Kinkade 2023-08-11 00:07:20 -05:00
parent 98485af4cf
commit 5677a0faf7
1 changed files with 3 additions and 3 deletions

@ -62,9 +62,9 @@ endif()
if(WIN32)
if(NOT MSVC)
message(SEND_ERROR "No MSVC found! MSVC 2022 version 1930 to 1936 is required.")
elseif((MSVC_VERSION LESS 1930) OR (MSVC_VERSION GREATER 1936))
message(SEND_ERROR "MSVC 2022 version 1930 to 1936 is required, Version Found: ${MSVC_VERSION}")
message(SEND_ERROR "No MSVC found! MSVC 2022 version 1930 to 1937 is required.")
elseif((MSVC_VERSION LESS 1930) OR (MSVC_VERSION GREATER 1937))
message(SEND_ERROR "MSVC 2022 version 1930 to 1937 is required, Version Found: ${MSVC_VERSION}")
endif()
endif()