File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -100,11 +100,12 @@ set(DISABLE_PCH CACHE BOOL "Disable precompiled headers as this may break certai
100100set (BUILD_TESTING CACHE BOOL "Build unit tests" )
101101
102102# Build with C++ 17 on Linux for maximum compatibility with older system
103- # but for Windows, enable C++ 20 to bypass a deprecation warning
103+ # but for Windows, enable C++ 26 to bypass a deprecation warning
104104# (workaround for https://github.com/KhronosGroup/Vulkan-Hpp/issues/2034)
105105# even though we do not yet use any C++ 20 features in our codebase
106+ # also catch2 now wants to build with c++26 on windows clang?
106107if (WIN32 )
107- set (CMAKE_CXX_STANDARD 20 )
108+ set (CMAKE_CXX_STANDARD 26 )
108109else ()
109110 set (CMAKE_CXX_STANDARD 17)
110111endif ()
You can’t perform that action at this time.
0 commit comments