From de79bac8e94ce84f4c88719729d59a6f5e3d6bf3 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Mon, 14 Jun 2021 06:58:44 +0100 Subject: [PATCH] build: Update Meson requirement to 0.49 This avoids this warning: WARNING: Project targeting '>= 0.48.0' but tried to use feature introduced in '0.49.0': / with string arguments. Signed-off-by: Frediano Ziglio --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 90b486e..e49d3ed 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # project definition # project('spice-common', 'c', - meson_version : '>= 0.48.0', + meson_version : '>= 0.49.0', license : 'LGPLv2.1', default_options : ['warning_level=2'])