meson.build: Update to meson v0.56.0

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 <jose.exposito89@gmail.com>
This commit is contained in:
José Expósito 2023-09-02 17:57:29 +02:00
parent 12bb7547f9
commit 74829a650d

View file

@ -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('.')