mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
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.
33 lines
573 B
Meson
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
|