spa: compile all function into libspa.so

This commit is contained in:
Wim Taymans 2024-11-21 13:26:14 +01:00
parent 31802d4994
commit d966a36fdd
3 changed files with 171 additions and 0 deletions

6
spa/lib/meson.build Normal file
View file

@ -0,0 +1,6 @@
spa_lib = shared_library('spa',
[ 'lib.c' ],
include_directories : [ configinc ],
dependencies : [ spa_dep, pthread_lib, mathlib ],
install : true,
install_dir : spa_plugindir )