From 74829a650dcc0226f4e3495f4b37bf2b399b6f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Exp=C3=B3sito?= Date: Sat, 2 Sep 2023 17:57:29 +0200 Subject: [PATCH] meson.build: Update to meson v0.56.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The meson version was `>= 0.49.0` but features from `0.56.0` were used: meson.build:485: WARNING: Project targets '>= 0.49.0' but uses feature introduced in '0.56.0': meson.project_source_root. Update meson's target version to reflect the features used. Signed-off-by: José Expósito --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9c425bb4..1c7a3cf4 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('libinput', 'c', version : '1.24.0', license : 'MIT/Expat', default_options : [ 'c_std=gnu99', 'warning_level=2' ], - meson_version : '>= 0.49.0') + meson_version : '>= 0.56.0') libinput_version = meson.project_version().split('.')