diff options
author | Simon Ser <contact@emersion.fr> | 2021-02-15 23:45:26 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-02-15 23:45:26 +0100 |
commit | 38ec1c0e733b7d135db5060c2061c2d3c09dc20b (patch) | |
tree | 48d447ee1c1e178be9e967280e23497dbd58321b | |
parent | ccb86448eb53bab51f5e2797dd2e0ef159ce1948 (diff) |
build: bump meson version to 0.56.0
Fixes this warning:
WARNING: Project targeting '>=0.54.0' but tried to use feature introduced in '0.56.0': variables as dictionary.
Fixes: 6f873078d4c0 ("build: use dictionnary for features instead of configuration_data")
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 2bbed4ea..5d199c09 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'c', version: '0.12.0', license: 'MIT', - meson_version: '>=0.54.0', + meson_version: '>=0.56.0', default_options: [ 'c_std=c11', 'warning_level=2', |