summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2024-03-28 15:40:44 +0100
committerSimon Ser <contact@emersion.fr>2024-04-09 00:48:18 +0000
commite7df1f2af2ccc80a85d28b6b4064c6466e425bd0 (patch)
tree589b8ac67888c984391323320abf24ed62e915e0
parentad4ed17335e62d0187362dcfe9d70dac886a8065 (diff)
build: bump minimum Meson version to 0.57
Fixes the following warning: tests/meson.build:91: WARNING: Project targets '>= 0.56.0' but uses feature introduced in '0.57.0': env arg in run_target. Signed-off-by: Simon Ser <contact@emersion.fr>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 431ebb7..f6f7dd8 100644
--- a/meson.build
+++ b/meson.build
@@ -2,7 +2,7 @@ project(
'wayland', 'c',
version: '1.22.90',
license: 'MIT',
- meson_version: '>= 0.56.0',
+ meson_version: '>= 0.57.0',
default_options: [
'warning_level=2',
'buildtype=debugoptimized',