meson: decrease minimum required meson version to 0.54.0

To generate a correct jack pkg-config file unescape_variable
is required which was introduced with Meson 0.59.0.
When using an older version a warning is printed that no
jack.pc file is generated.
This commit is contained in:
Nils Tonnätt 2021-08-06 18:06:25 +02:00 committed by Wim Taymans
parent dd12910769
commit 8028f9dd6e
2 changed files with 18 additions and 9 deletions

View file

@ -1,7 +1,7 @@
project('pipewire', ['c' ],
version : '0.3.33',
license : [ 'MIT', 'LGPL-2.1-or-later', 'GPL-2.0-only' ],
meson_version : '>= 0.59.0',
meson_version : '>= 0.54.0',
default_options : [ 'warning_level=3',
'c_std=gnu99',
'b_pie=true',