pipewire/spa/plugins/alsa/meson.build
Wim Taymans 4a6b1b42bc Don't hardcode plugin path
Use SPA_PLUGIN_DIR to get the plugin path.
Install plugins in subdirectory to make it match the build tree.
2017-06-19 12:19:22 +02:00

13 lines
561 B
Meson

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