pipewire/spa/examples/meson.build
Julian Bouzas a5d17ba6d1 spa: add adapter-control example to test audioadapter nodes
Example executable that runs an output audioadapter using audiotestsrc as slave
with an input audioadapter using alsa-pcm-sink as slave for easy testing.
2020-02-04 12:00:27 +01:00

16 lines
583 B
Meson

if sdl_dep.found()
executable('local-v4l2', 'local-v4l2.c',
include_directories : [spa_inc ],
dependencies : [dl_lib, sdl_dep, pthread_lib],
install : false)
endif
executable('example-control', 'example-control.c',
include_directories : [spa_inc ],
dependencies : [dl_lib, pthread_lib, mathlib],
install : false)
executable('adapter-control', 'adapter-control.c',
include_directories : [spa_inc ],
dependencies : [dl_lib, pthread_lib, mathlib],
install : false)