Windows: require at least MSVC 19.20 to build

Older versions of MSVC fail to rethrow an unhandled C++ exception (using
`throw;`) in the termination handler (`std::set_terminate`), however
Icinga relies on this behavior in its crash handler
(`Application::ExceptionHandler`).
This commit is contained in:
Julian Brost 2020-10-21 12:49:50 +02:00
parent 532d37624f
commit f084cdecbe
1 changed files with 6 additions and 0 deletions

View File

@ -378,6 +378,12 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
endif()
endif()
if(MSVC)
if("${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS "19.20")
message(FATAL_ERROR "Your version of MSVC (${CMAKE_CXX_COMPILER_VERSION}) is too old for building Icinga 2 (MSVC >= 19.20 from Visual Studio 2019 is required).")
endif()
endif()
if(NOT MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")