pipewire/spa/plugins/alsa/meson.build
Gleb Popov fd937fa378 On FreeBSD, add dependency on epoll-shim library.
FreeBSD doesn't provide timerfd and eventfd functions. These are implemented in
3rd party library called epoll-shim. Link targets requiring these functions to
this library.
2019-11-19 13:41:40 +01:00

15 lines
634 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, epoll_shim_dep ],
install : true,
install_dir : '@0@/spa/alsa'.format(get_option('libdir')))