pipewire/spa/plugins/meson.build
George Kiagiadakis 99e1bb1068 meson: spa/plugins: don't check if the plugin dependencies have been found
If these optional plugins are enabled in meson options,
then the dependencies should be required to proceed.
It is not cool to compile with let's say bluez5 explicitly
enabled and after compilation discover that bluez was not
found and meson silently skipped that plugin.
2019-02-13 11:22:22 +01:00

33 lines
573 B
Meson

if get_option('alsa')
subdir('alsa')
endif
if get_option('audioconvert')
subdir('audioconvert')
endif
if get_option('audiomixer')
subdir('audiomixer')
endif
if get_option('audiotestsrc')
subdir('audiotestsrc')
endif
if get_option('bluez5')
subdir('bluez5')
endif
if get_option('ffmpeg')
subdir('ffmpeg')
endif
if get_option('support')
subdir('support')
endif
if get_option('test')
subdir('test')
endif
if get_option('videotestsrc')
subdir('videotestsrc')
endif
if get_option('volume')
subdir('volume')
endif
if get_option('v4l2')
subdir('v4l2')
endif