mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
pipewire: add enable/disable to meson for spa plugins
This commit is contained in:
parent
805240258b
commit
8d71d2dab8
11 changed files with 134 additions and 21 deletions
|
|
@ -1,15 +1,33 @@
|
|||
subdir('alsa')
|
||||
subdir('audioconvert')
|
||||
subdir('audiomixer')
|
||||
subdir('audiotestsrc')
|
||||
if sbc_dep.found()
|
||||
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') and sbc_dep.found()
|
||||
subdir('bluez5')
|
||||
endif
|
||||
if avcodec_dep.found()
|
||||
if get_option('ffmpeg') and avcodec_dep.found()
|
||||
subdir('ffmpeg')
|
||||
endif
|
||||
subdir('support')
|
||||
subdir('test')
|
||||
subdir('videotestsrc')
|
||||
subdir('volume')
|
||||
subdir('v4l2')
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue