From bc392d8b0b1e03353a6c6e69f167b22bccda83e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 1 May 2020 12:28:48 +0200 Subject: [PATCH] meson: use 'status()' instead of 'message()' --- meson.build | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/meson.build b/meson.build index 8e93075..d1f4dad 100644 --- a/meson.build +++ b/meson.build @@ -140,9 +140,12 @@ install_headers( 'yml.h', subdir: 'yambar') -message('') -message('Build type: @0@'.format(get_option('buildtype'))) -message('XCB backend: @0@'.format(backend_x11)) -message('Wayland backend: @0@'.format(backend_wayland)) -message('Core modules as plugins: @0@'.format(plugs_as_libs)) -message('') +summary( + { + 'Build type': get_option('buildtype'), + 'XCB backend': backend_x11, + 'Wayland backend': backend_wayland, + 'Core modules as plugins': plugs_as_libs, + }, + bool_yn: true +)