pipewire/src/daemon/systemd/meson.build
Barnabás Pőcze cc73053512 treewide: meson.build: use feature.allowed()
Since meson 0.59.0, a feature object has an `allowed()`
method which returns true when the feature is set to
'enabled' or 'auto'.

Utilize that instead of the previously used

  not feature.disabled()
2022-02-04 00:15:59 +01:00

6 lines
146 B
Meson

if get_option('systemd-system-service').allowed()
subdir('system')
endif
if get_option('systemd-user-service').allowed()
subdir('user')
endif