Revert removal of build.cpp_std default

I thought meson now handled this correctly, but it seems not.
This commit is contained in:
Robbert van der Helm
2025-06-01 22:36:40 +02:00
parent 0002273e4d
commit 6318f1623e
+3
View File
@@ -6,6 +6,9 @@ project(
default_options : [ default_options : [
'warning_level=3', 'warning_level=3',
'cpp_std=c++2a', 'cpp_std=c++2a',
# Even though Meson will complain that this option does not exist, without
# this Meson will not apply the above option to native targets
'build.cpp_std=c++2a',
], ],
) )