From f21d82101b1141d02410bcbc6c35061abc4cc461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sun, 29 Jul 2018 15:37:33 +0200 Subject: [PATCH] meson: Bump required version This avoids WARNING: Project targetting '>= 0.40.1' but tried to use feature introduced in '0.42.0': gnome.mkenums_simple 0.42 is fairly old already and 0.40 isn't in a stable Debian release either. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 410a242..c6ce587 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,7 @@ project('call', 'c', version: '0.0.0', license: 'GPLv3+', - meson_version: '>= 0.40.1', + meson_version: '>= 0.42.0', default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11' ], )