mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-10 13:30:05 -05:00
Add an option to allow the user to disable examples, this will allow to build pipewire without alsa. Without this option, build with -Dpipewire-alsa=false -Dalsa=false fails on: src/examples/meson.build:47:0: ERROR: Unknown variable "alsa_dep". Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
14 lines
211 B
Meson
14 lines
211 B
Meson
|
|
subdir('pipewire')
|
|
subdir('extensions')
|
|
subdir('daemon')
|
|
subdir('tools')
|
|
subdir('modules')
|
|
if get_option('examples')
|
|
subdir('examples')
|
|
endif
|
|
subdir('tests')
|
|
|
|
if get_option('gstreamer')
|
|
subdir('gst')
|
|
endif
|