forked from external/yambar
meson: use 'status()' instead of 'message()'
This commit is contained in:
parent
44fb0b83ba
commit
bc392d8b0b
1 changed files with 9 additions and 6 deletions
15
meson.build
15
meson.build
|
@ -140,9 +140,12 @@ install_headers(
|
||||||
'yml.h',
|
'yml.h',
|
||||||
subdir: 'yambar')
|
subdir: 'yambar')
|
||||||
|
|
||||||
message('')
|
summary(
|
||||||
message('Build type: @0@'.format(get_option('buildtype')))
|
{
|
||||||
message('XCB backend: @0@'.format(backend_x11))
|
'Build type': get_option('buildtype'),
|
||||||
message('Wayland backend: @0@'.format(backend_wayland))
|
'XCB backend': backend_x11,
|
||||||
message('Core modules as plugins: @0@'.format(plugs_as_libs))
|
'Wayland backend': backend_wayland,
|
||||||
message('')
|
'Core modules as plugins': plugs_as_libs,
|
||||||
|
},
|
||||||
|
bool_yn: true
|
||||||
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue