spa: fix indentation in audioconvert/meson.build

Was partially using spaces, partially 2-space tabs. Use 2 spaces only and fix
the few lines where the indentation was completely out of whack.
This commit is contained in:
Peter Hutterer 2021-06-09 10:46:36 +10:00
parent b2206e2530
commit e38cc427bf

View file

@ -102,7 +102,7 @@ audioconvert = static_library('audioconvert',
link_with : simd_dependencies, link_with : simd_dependencies,
include_directories : [spa_inc], include_directories : [spa_inc],
install : false install : false
) )
audioconvertlib = shared_library('spa-audioconvert', audioconvertlib = shared_library('spa-audioconvert',
audioconvert_sources, audioconvert_sources,
@ -118,7 +118,7 @@ test_lib = static_library('test_lib',
c_args : ['-O3'], c_args : ['-O3'],
include_directories : [spa_inc], include_directories : [spa_inc],
install : false install : false
) )
test_apps = [ test_apps = [
'test-audioadapter', 'test-audioadapter',
@ -126,7 +126,7 @@ test_apps = [
'test-channelmix', 'test-channelmix',
'test-fmt-ops', 'test-fmt-ops',
'test-resample', 'test-resample',
] ]
foreach a : test_apps foreach a : test_apps
test(a, test(a,
@ -144,8 +144,7 @@ foreach a : test_apps
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()
test_conf.set('exec', test_conf.set('exec', installed_tests_execdir / 'audioconvert' / a)
installed_tests_execdir / 'audioconvert' / a)
configure_file( configure_file(
input: installed_tests_template, input: installed_tests_template,
output: a + '.test', output: a + '.test',
@ -158,7 +157,7 @@ endforeach
benchmark_apps = [ benchmark_apps = [
'benchmark-fmt-ops', 'benchmark-fmt-ops',
'benchmark-resample', 'benchmark-resample',
] ]
foreach a : benchmark_apps foreach a : benchmark_apps
benchmark(a, benchmark(a,
@ -176,8 +175,7 @@ foreach a : benchmark_apps
if installed_tests_enabled if installed_tests_enabled
test_conf = configuration_data() test_conf = configuration_data()
test_conf.set('exec', test_conf.set('exec', installed_tests_execdir / 'audioconvert' / a)
installed_tests_execdir / 'audioconvert' / a)
configure_file( configure_file(
input: installed_tests_template, input: installed_tests_template,
output: a + '.test', output: a + '.test',