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:
Simon Ser 2021-02-08 15:16:10 +01:00
parent 2118a3ce47
commit 6f873078d4
7 changed files with 26 additions and 29 deletions

View file

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

View file

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