From b6f47af555e17dbc3b5cacc061bd22c54e0c80f9 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Thu, 21 Jan 2021 14:34:01 +0200 Subject: [PATCH] [meson] Report more options in the summary --- meson.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson.build b/meson.build index ce313dea6..990c5e308 100644 --- a/meson.build +++ b/meson.build @@ -402,6 +402,11 @@ build_summary = { {'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1, 'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1, 'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1, + 'Experimental APIs': conf.get('HB_EXPERIMENTAL_API', 0) == 1, + }, + 'Testing': + {'Tests': get_option('tests').enabled(), + 'Benchmark': get_option('benchmark').enabled(), }, } if meson.version().version_compare('>=0.53')