From 09b4884915ca6c7bd613fbb3afa264d458302059 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Tue, 3 Jan 2023 18:54:22 -0800 Subject: [PATCH] (ci) Fixing weird filesystem errors [ci skip] Seems like for gcc the use of only works in c++17 mode. https://github.com/KhronosGroup/OpenXR-SDK-Source/issues/260 --- CMakePresets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakePresets.json b/CMakePresets.json index 7c68d46f2..0978e5307 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -34,7 +34,7 @@ "hidden": true, "cacheVariables": { "CMAKE_CXX_EXTENSIONS": "OFF", - "CMAKE_CXX_STANDARD": "20", + "CMAKE_CXX_STANDARD": "17", "CMAKE_CXX_STANDARD_REQUIRED": "ON" } },