pipewire/src/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

15 lines
239 B
Meson

subdir('pipewire')
subdir('daemon')
subdir('tools')
subdir('modules')
if get_option('examples').allowed()
subdir('examples')
endif
if get_option('tests').allowed()
subdir('tests')
endif
if gst_dep.length() != 0
subdir('gst')
endif