From e29fbf1b07b6bc0fa7e0598bfc9c30b275f08aa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 15 Jun 2024 08:22:03 +0200 Subject: [PATCH] build: Add summary Makes is simpler to figure out how calls is built. This also bumps the minimum meson version to 1.0. Part-of: --- meson.build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 3b5f569..c71ddb8 100644 --- a/meson.build +++ b/meson.build @@ -24,7 +24,7 @@ project( 'c', 'vala', version: '46.0', license: 'GPLv3+', - meson_version: '>= 0.56.0', + meson_version: '>= 1.0', default_options: [ 'warning_level=1', 'buildtype=debugoptimized', @@ -140,6 +140,13 @@ add_project_arguments( language: 'c' ) +summary({ + 'Build documentation': get_option('gtk_doc'), + 'Build manpages': get_option('manpages'), + 'Build tests': get_option('tests'), + 'Use gstreamers debug API': get_option('gst_debug'), +}) + subdir('po') subdir('src') subdir('plugins')