2021-09-20 08:59:10 +10:00
|
|
|
control_sources = [
|
|
|
|
|
'mixer.c',
|
|
|
|
|
'plugin.c'
|
|
|
|
|
]
|
2019-10-16 11:13:23 +02:00
|
|
|
|
|
|
|
|
controllib = shared_library('spa-control',
|
2021-09-20 08:59:10 +10:00
|
|
|
control_sources,
|
2021-12-28 16:04:06 +01:00
|
|
|
dependencies : [ spa_dep, mathlib ],
|
2021-09-20 08:59:10 +10:00
|
|
|
install : true,
|
|
|
|
|
install_dir : spa_plugindir / 'control')
|
2025-09-17 13:42:12 +02:00
|
|
|
|
|
|
|
|
test_inc = include_directories('../test')
|
|
|
|
|
|
|
|
|
|
test_apps = [
|
|
|
|
|
'test-mixer-ump-sort',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
foreach a : test_apps
|
|
|
|
|
test(a,
|
|
|
|
|
executable(a, a + '.c',
|
|
|
|
|
dependencies : [ spa_dep ],
|
|
|
|
|
include_directories : [ configinc, test_inc ],
|
|
|
|
|
install_rpath : spa_plugindir / 'control',
|
|
|
|
|
install : installed_tests_enabled,
|
|
|
|
|
install_dir : installed_tests_execdir / 'control'),
|
|
|
|
|
env : [
|
|
|
|
|
'SPA_PLUGIN_DIR=@0@'.format(spa_dep.get_variable('plugindir')),
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
if installed_tests_enabled
|
|
|
|
|
test_conf = configuration_data()
|
|
|
|
|
test_conf.set('exec', installed_tests_execdir / 'control' / a)
|
|
|
|
|
configure_file(
|
|
|
|
|
input: installed_tests_template,
|
|
|
|
|
output: a + '.test',
|
|
|
|
|
install_dir: installed_tests_metadir / 'control',
|
|
|
|
|
configuration: test_conf
|
|
|
|
|
)
|
|
|
|
|
endif
|
|
|
|
|
endforeach
|