mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
build: build with C23 if supported
This lets us conditionally leverage C23 features. Force one build to C11 in CI to make sure we stay C11-compatible.
This commit is contained in:
parent
3880ee15d7
commit
85875c47d9
2 changed files with 2 additions and 2 deletions
|
|
@ -5,7 +5,7 @@ project(
|
|||
license: 'MIT',
|
||||
meson_version: '>=0.59.0',
|
||||
default_options: [
|
||||
'c_std=c11',
|
||||
'c_std=' + (meson.version().version_compare('>=1.3.0') ? 'c23,c11' : 'c11'),
|
||||
'warning_level=2',
|
||||
'werror=true',
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue