From 7c5e4f1fad87be2fbb7eff94a9f2dd2cba759410 Mon Sep 17 00:00:00 2001 From: Riccardo Schirone Date: Tue, 22 Feb 2022 23:05:44 +0100 Subject: [PATCH] Update required meson version to 0.59.0 (#2351) We are already using `import(..., required: ..)` where `required` argument was introduced in 0.59.0, so let's update the required version of meson necessary to build rizin. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 73b1f5bfd2..370ae4b4fa 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('rizin', 'c', version: 'v0.4.0-git', license: 'LGPL3', - meson_version: '>=0.58.0', + meson_version: '>=0.59.0', default_options: [ 'buildtype=debugoptimized', 'b_vscrt=from_buildtype',