Remove remaining tabs from meson.build files

No changes, just tab-to-space replacement and a little bit of manual
twiddling.
This commit is contained in:
Peter Hutterer 2021-09-30 10:01:43 +10:00
parent fe79e684b7
commit abd5f9fbe8
7 changed files with 92 additions and 86 deletions

View file

@ -2,7 +2,8 @@ audiomixer_sources = [
'audiomixer.c', 'audiomixer.c',
'mix-ops.c', 'mix-ops.c',
'mixer-dsp.c', 'mixer-dsp.c',
'plugin.c'] 'plugin.c'
]
simd_cargs = [] simd_cargs = []
simd_dependencies = [] simd_dependencies = []
@ -53,4 +54,5 @@ audiomixerlib = shared_library('spa-audiomixer',
include_directories : [spa_inc], include_directories : [spa_inc],
dependencies : [ mathlib ], dependencies : [ mathlib ],
install : true, install : true,
install_dir : spa_plugindir / 'audiomixer') install_dir : spa_plugindir / 'audiomixer'
)

View file

@ -38,10 +38,12 @@ foreach a : benchmark_apps
dependencies : [dl_lib, pthread_lib, mathlib ], dependencies : [dl_lib, pthread_lib, mathlib ],
include_directories : [spa_inc ], include_directories : [spa_inc ],
install : installed_tests_enabled, install : installed_tests_enabled,
install_dir : installed_tests_execdir), install_dir : installed_tests_execdir,
),
env : [ env : [
'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()), 'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()),
]) ]
)
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()
@ -50,7 +52,7 @@ foreach a : benchmark_apps
input: installed_tests_template, input: installed_tests_template,
output: 'spa-' + a + '.test', output: 'spa-' + a + '.test',
install_dir: installed_tests_metadir, install_dir: installed_tests_metadir,
configuration: test_conf configuration: test_conf,
) )
endif endif
endforeach endforeach

View file

@ -353,12 +353,14 @@ test('pw-test-protocol-native',
include_directories : [configinc, spa_inc ], include_directories : [configinc, spa_inc ],
dependencies : [pipewire_dep], dependencies : [pipewire_dep],
install : installed_tests_enabled, install : installed_tests_enabled,
install_dir : installed_tests_execdir), install_dir : installed_tests_execdir,
),
env : [ env : [
'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()), 'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()),
'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()), 'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()),
'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root()) 'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root())
]) ]
)
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()