pipewire/spa/plugins/alsa/meson.build
Wim Taymans ac24743b2e the epoll shim should only be used by the system library.
All other places should use the system library to get the right
fds.
2019-11-19 15:16:18 +01:00

15 lines
619 B
Meson

spa_alsa_sources = ['alsa.c',
'alsa-udev.c',
'alsa-pcm-device.c',
'alsa-pcm-sink.c',
'alsa-pcm-source.c',
'alsa-pcm.c',
'alsa-seq-source.c',
'alsa-seq.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')))