meson: default to c11

We don't need any C18 specifics, so C11 is also fine and more widely
supported (i. e. in older clang versions).
This commit is contained in:
sterni 2020-12-20 16:43:42 +01:00 committed by sternenseemann
parent e4620071b0
commit b4c9238f3f

View file

@ -3,7 +3,7 @@ project('foot', 'c',
license: 'MIT',
meson_version: '>=0.53.0',
default_options: [
'c_std=c18',
'c_std=c11',
'warning_level=1',
'werror=true',
'b_ndebug=if-release'])