From 50db627d427a3d97c3273ded3d30313a17ef075e Mon Sep 17 00:00:00 2001 From: Ricardo Squassina Lee <8495707+squassina@users.noreply.github.com> Date: Sat, 14 Feb 2026 21:45:53 -0300 Subject: [PATCH] project: require Meson version >= 0.56.0 fix: "mangowc-git/protocols/meson.build:3: WARNING: Project does not target a minimum version but uses feature deprecated since '0.56.0': dependency.get_pkgconfig_variable. use dependency.get_variable(pkgconfig : ...) instead" --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index e7979bdf..1978db4d 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,6 @@ project('mango', ['c', 'cpp'], version : '0.12.2', + meson_version : '>=0.56.0', ) subdir('protocols')