From 52a96cec13bf2d541c42f8f398e7ea1387c6f56d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 15 May 2023 20:51:53 -0400 Subject: Organize configuration summary --- meson.build | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index e56d08d..357b2be 100644 --- a/meson.build +++ b/meson.build @@ -348,9 +348,21 @@ if not get_option('tests').disabled() endif if not meson.is_subproject() - summary('Tests', not get_option('tests').disabled(), bool_yn: true) - summary('Documentation', build_docs, bool_yn: true) - summary('Prefix', get_option('prefix'), section: 'Paths') - summary('LV2 bundles', lv2dir, section: 'Paths') - summary('Headers', get_option('prefix') / get_option('includedir'), section: 'Paths') + summary( + { + 'Tests': not get_option('tests').disabled(), + 'Documentation': build_docs, + }, + bool_yn: true, + section: 'Components', + ) + + summary( + { + 'Install prefix': get_option('prefix'), + 'Headers': get_option('prefix') / get_option('includedir'), + 'LV2 bundles': lv2dir, + }, + section: 'Directories', + ) endif -- cgit v1.2.1