Remove "98" from the supported C++ standards list in CMake

wxWidgets now requires at least C++11.

Closes #22933.
This commit is contained in:
PB 2022-10-30 17:58:47 +01:00 committed by Vadim Zeitlin
parent fec8c06a53
commit 6982d70f58

View file

@ -53,7 +53,7 @@ if(NOT MSVC OR MSVC_VERSION GREATER 1800)
set(wxCXX_STANDARD_DEFAULT COMPILER_DEFAULT)
endif()
wx_option(wxBUILD_CXX_STANDARD "C++ standard used to build wxWidgets targets"
${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 98 11 14 17 20)
${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 11 14 17 20)
endif()
if(WIN32)