pipewire/spa/plugins/control/meson.build
Barnabás Pőcze 2b110af366 treewide: meson.build: use dependency variable for SPA
Use `spa_dep` everywhere instead of `spa_inc`,
and remove `spa_inc` altogether.
2021-12-28 18:34:06 +01:00

10 lines
211 B
Meson

control_sources = [
'mixer.c',
'plugin.c'
]
controllib = shared_library('spa-control',
control_sources,
dependencies : [ spa_dep, mathlib ],
install : true,
install_dir : spa_plugindir / 'control')