OpenXr: Enable C++20 for OpenXR plugin.

Enabling it globally causes issue with WebRTC.

Co-authored-by: Lubosz Sarnecki <lubosz@gmail.com>
This commit is contained in:
Julian Groß 2024-07-07 15:55:20 +02:00 committed by Ada
parent 2a26a71f2c
commit 9702049ede

View file

@ -23,3 +23,5 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
# Silence GCC warnings
target_compile_options(openxr PRIVATE -Wno-missing-field-initializers)
endif()
set_property(TARGET openxr PROPERTY CXX_STANDARD 20)