From e44ab70fc126e1b0e0bb9d2fa6946801da9d57a0 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 5 Sep 2022 17:58:18 -0700 Subject: [meson] add missing meson_version This makes it clear which version of meson is to be targeted. Signed-off-by: Rosen Penev github: #116 --- meson.build | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 5ec3b95f..caeaa099 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,10 @@ -project('lighttpd', 'c', version: '1.4.68', license: 'BSD-3-Clause', - default_options : ['c_std=c11'] +project( + 'lighttpd', + 'c', + version: '1.4.68', + license: 'BSD-3-Clause', + default_options: ['c_std=c11'], + meson_version: '>=0.40.0', ) subdir('src') -- cgit v1.2.1