mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-15 08:56:38 -05: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,18 +1,18 @@
|
|||
#project('spa', 'c')
|
||||
|
||||
|
||||
alsa_dep = dependency('alsa')
|
||||
v4l2_dep = dependency('libv4l2')
|
||||
x11_dep = dependency('x11', required : false)
|
||||
sdl_dep = dependency('sdl2', required : false)
|
||||
libva_dep = dependency('libva', required : false)
|
||||
sbc_dep = dependency('sbc', required : false)
|
||||
avcodec_dep = dependency('libavcodec', required : false)
|
||||
avformat_dep = dependency('libavformat', required : false)
|
||||
avfilter_dep = dependency('libavfilter', required : false)
|
||||
libva_dep = dependency('libva', required : false)
|
||||
sbc_dep = dependency('sbc', required : false)
|
||||
libudev_dep = dependency('libudev')
|
||||
threads_dep = dependency('threads')
|
||||
speexdsp_dep = dependency('speexdsp')
|
||||
sdl_dep = dependency('sdl2', required : false)
|
||||
|
||||
#cc = meson.get_compiler('c')
|
||||
#dl_lib = cc.find_library('dl', required : false)
|
||||
|
|
@ -22,7 +22,11 @@ speexdsp_dep = dependency('speexdsp')
|
|||
spa_inc = include_directories('include')
|
||||
|
||||
subdir('include')
|
||||
subdir('plugins')
|
||||
|
||||
if get_option('spa-plugins')
|
||||
subdir('plugins')
|
||||
endif
|
||||
|
||||
subdir('tools')
|
||||
subdir('tests')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue