spa: Add a varlink client support library

This commit is contained in:
Arun Raghavan 2026-02-18 16:46:15 -08:00
parent 8b8241d6e3
commit 7caf86eaa6
6 changed files with 1069 additions and 0 deletions

View file

@ -27,6 +27,17 @@ if find.found()
endforeach
endif
utils = [
['varlink-call', []],
]
foreach a : utils
executable('spa-' + a[0], a[0] + '.c',
dependencies : [ spa_dep, dl_lib, pthread_lib, mathlib ] + a[1],
include_directories : [configinc],
)
endforeach
benchmark_apps = [
['stress-ringbuffer', []],
['benchmark-pod', []],