From 8b76f521a06ca57129d5b2a53175f1e22b532d39 Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Tue, 1 Apr 2025 12:45:34 +0200 Subject: [PATCH] meson: Bump minimum version to 1.3.0 Builds currently fail on older versions since the commit below. Fixes: f35172b6a46 (meson: make CL args common) Signed-off-by: Robert Mader Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 82f63a8ccef..b450d7c7b82 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project( ['c', 'cpp'], version : files('VERSION'), license : 'MIT', - meson_version : '>= 1.1.0', + meson_version : '>= 1.3.0', default_options : [ 'buildtype=debugoptimized', 'b_ndebug=if-release',