mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-15 08:56:26 -05:00
meson.build status: print actual build options in message
We were printing the option intent (true by default for all), but some are disabled when a component is not found and this was not reflected.
This commit is contained in:
parent
34489dca16
commit
19d7edb430
2 changed files with 6 additions and 6 deletions
|
|
@ -159,10 +159,10 @@ summary = [
|
|||
'----------------',
|
||||
'wlroots @0@'.format(meson.project_version()),
|
||||
'',
|
||||
' libcap: @0@'.format(get_option('enable_libcap')),
|
||||
' systemd: @0@'.format(get_option('enable_systemd')),
|
||||
' elogind: @0@'.format(get_option('enable_elogind')),
|
||||
' xwayland: @0@'.format(get_option('enable_xwayland')),
|
||||
' libcap: @0@'.format(conf_data.get('WLR_HAS_LIBCAP', false)),
|
||||
' systemd: @0@'.format(conf_data.get('WLR_HAS_SYSTEMD', false)),
|
||||
' elogind: @0@'.format(conf_data.get('WLR_HAS_ELOGIND', false)),
|
||||
' xwayland: @0@'.format(conf_data.get('WLR_HAS_XWAYLAND', false)),
|
||||
'----------------',
|
||||
''
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue