Allow VS2022 in MSVC build

pull/1127/head
Edouard Griffiths 2022-02-05 12:04:34 +01:00 zatwierdzone przez GitHub
rodzic 26b8619bb1
commit 9d7d80158f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -201,10 +201,12 @@ elseif (WIN32)
set(VS2017 ON)
elseif(MSVC_VERSION GREATER 1899 AND MSVC_VERSION LESS 1910)
set(VS2015 ON)
elseif(MSVC_VERSION GREATER 1930)
set(VS2022 ON)
endif()
if(NOT VS2015 AND NOT VS2017 AND NOT VS2019)
message(FATAL_ERROR "You must use Microsoft Visual Studio 2015, 2017 or 2019 as compiler")
if(NOT VS2015 AND NOT VS2017 AND NOT VS2019 AND NOT VS2022)
message(FATAL_ERROR "You must use Microsoft Visual Studio 2015, 2017, 2019 or greater as compiler")
endif()
# in alternative we can use ExternalProject