mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
build: use dictionnary for features instead of configuration_data
This allows us to easily iterate on all features and only deal with bools.
This commit is contained in:
parent
2118a3ce47
commit
6f873078d4
7 changed files with 26 additions and 29 deletions
|
|
@ -33,7 +33,7 @@ if get_option('logind-provider') == 'auto'
|
|||
version: logind_version,
|
||||
)
|
||||
if logind.found()
|
||||
conf_data.set10('WLR_HAS_SYSTEMD', true)
|
||||
features += { 'systemd': true }
|
||||
else
|
||||
logind = dependency('libelogind',
|
||||
required: get_option('logind'),
|
||||
|
|
@ -41,7 +41,7 @@ if get_option('logind-provider') == 'auto'
|
|||
version: logind_version,
|
||||
)
|
||||
if logind.found()
|
||||
conf_data.set10('WLR_HAS_ELOGIND', true)
|
||||
features += { 'elogind': true }
|
||||
endif
|
||||
endif
|
||||
logind_found = logind.found()
|
||||
|
|
@ -53,7 +53,7 @@ else
|
|||
version: logind_version,
|
||||
)
|
||||
if logind.found()
|
||||
conf_data.set10('WLR_HAS_' + get_option('logind-provider').to_upper(), true)
|
||||
features += { get_option('logind-provider'): true }
|
||||
logind_found = true
|
||||
endif
|
||||
endif
|
||||
|
|
@ -69,5 +69,5 @@ libseat = dependency('libseat', required: get_option('libseat'), version: '>=0.2
|
|||
if libseat.found()
|
||||
wlr_files += files('libseat.c')
|
||||
wlr_deps += libseat
|
||||
conf_data.set10('WLR_HAS_LIBSEAT', true)
|
||||
features += { 'libseat': true }
|
||||
endif
|
||||
|
|
|
|||
|
|
@ -35,4 +35,4 @@ wlr_files += files(
|
|||
'output.c',
|
||||
)
|
||||
wlr_deps += x11_libs
|
||||
conf_data.set10('WLR_HAS_X11_BACKEND', true)
|
||||
features += { 'x11-backend': true }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue