pipewire/spa/plugins/alsa/meson.build
Wim Taymans 818fb9e904 alsa: add midi bridge
Add a node that exposes all midi input and output ports and converts to
and from PipeWire control streams.
2019-09-19 16:57:00 +02:00

15 lines
611 B
Meson

spa_alsa_sources = ['alsa.c',
'alsa-monitor.c',
'alsa-device.c',
'alsa-seq-source.c',
'alsa-seq.c',
'alsa-sink.c',
'alsa-source.c',
'alsa-utils.c']
spa_alsa = shared_library('spa-alsa',
spa_alsa_sources,
include_directories : [spa_inc],
dependencies : [ alsa_dep, libudev_dep, mathlib ],
install : true,
install_dir : '@0@/spa/alsa'.format(get_option('libdir')))