pipewire/spa/plugins/jack/meson.build
Peter Hutterer ebda71d489 spa: fix the indentation in the various meson.build files
Was all over the place using tabs and spaces, let's make this more
consistent.
2021-09-20 07:29:03 +00:00

13 lines
355 B
Meson

spa_jack_sources = [
'plugin.c',
'jack-client.c',
'jack-device.c',
'jack-sink.c',
'jack-source.c']
spa_jack = shared_library('spa-jack',
spa_jack_sources,
include_directories : [spa_inc],
dependencies : [ jack_dep, mathlib ],
install : true,
install_dir : spa_plugindir / 'jack')