From bf6377a98d977116f14c438ff2f20d670b6d247a Mon Sep 17 00:00:00 2001 From: Brandon Maier Date: Sat, 29 Jul 2023 19:30:47 +0000 Subject: [PATCH] meson: set minimum Meson version to 0.56.0 Set the minimum required version of Meson based on the highest version feature used, as detected by meson-setup. * 0.56.0: {'meson.project_build_root'} Signed-off-by: Brandon Maier Signed-off-by: David Gibson --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index bf70f29..8f5fea5 100644 --- a/meson.build +++ b/meson.build @@ -2,6 +2,7 @@ project('dtc', 'c', version: '1.7.0', license: ['GPL2+', 'BSD-2'], default_options: 'werror=true', + meson_version: '>=0.56.0' ) cc = meson.get_compiler('c')