meson: use 'status()' instead of 'message()'

This commit is contained in:
Daniel Eklöf 2020-05-01 12:28:48 +02:00
parent 44fb0b83ba
commit bc392d8b0b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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
)