From cf80e33fd8dd34123a7e7a64adfe96b17f14f92a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 9 Sep 2024 09:46:21 -0700 Subject: [PATCH] meson: set a minimum Meson version Without a version set meson will give no developer warnings, including deprecations. 0.64 was selected as it's quite old, it's the newest version supported by muon (a pure C Meson implementation), and there's nothing complicated going on here. Signed-off-by: Dylan Baker --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index e349362b3..bdf0fa006 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,7 @@ project('nlohmann_json', 'cpp', version : '3.11.3', license : 'MIT', + meson_version : '>= 0.64', ) nlohmann_json_dep = declare_dependency(