include vs17.6 in acceptable version range

develop
Kelly Kinkade 2023-06-29 20:14:44 -05:00 committed by Kelly Kinkade
parent 09027543df
commit 354f56cc33
1 changed files with 3 additions and 3 deletions

@ -60,9 +60,9 @@ endif()
if(WIN32)
if(NOT MSVC)
message(SEND_ERROR "No MSVC found! MSVC 2022 version 1930 to 1935 is required.")
elseif((MSVC_VERSION LESS 1930) OR (MSVC_VERSION GREATER 1935))
message(SEND_ERROR "MSVC 2022 version 1930 to 1935 is required, Version Found: ${MSVC_VERSION}")
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}")
endif()
endif()