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

@ -346,19 +346,21 @@ pipewire_module_metadata = shared_library('pipewire-module-metadata',
)
test('pw-test-protocol-native',
executable('pw-test-protocol-native',
[ 'module-protocol-native/test-connection.c',
'module-protocol-native/connection.c' ],
c_args : libpipewire_c_args,
include_directories : [configinc, spa_inc ],
dependencies : [pipewire_dep],
install : installed_tests_enabled,
install_dir : installed_tests_execdir),
env : [
'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()),
'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()),
'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root())
])
executable('pw-test-protocol-native',
[ 'module-protocol-native/test-connection.c',
'module-protocol-native/connection.c' ],
c_args : libpipewire_c_args,
include_directories : [configinc, spa_inc ],
dependencies : [pipewire_dep],
install : installed_tests_enabled,
install_dir : installed_tests_execdir,
),
env : [
'SPA_PLUGIN_DIR=@0@/spa/plugins/'.format(meson.build_root()),
'PIPEWIRE_CONFIG_DIR=@0@/src/daemon/'.format(meson.build_root()),
'PIPEWIRE_MODULE_DIR=@0@/src/modules/'.format(meson.build_root())
]
)
if installed_tests_enabled
test_conf = configuration_data()

View file

@ -1,7 +1,7 @@
test_apps = [
'test-endpoint',
'test-interfaces',
# 'test-remote',
# 'test-remote',
'test-stream',
]

View file

@ -11,9 +11,9 @@ tools_sources = [
foreach t : tools_sources
executable(t.get(0),
t.get(1),
install: true,
dependencies : [pipewire_dep, mathlib],
t.get(1),
install: true,
dependencies : [pipewire_dep, mathlib],
)
endforeach
@ -27,9 +27,9 @@ endif
if ncurses_dep.found()
executable('pw-top',
'pw-top.c',
install: true,
dependencies : [pipewire_dep, ncurses_dep],
'pw-top.c',
install: true,
dependencies : [pipewire_dep, ncurses_dep],
)
endif
@ -63,12 +63,12 @@ if not get_option('pw-cat').disabled() and sndfile_dep.found()
meson.add_install_script('sh', '-c', cmd)
endforeach
elif not sndfile_dep.found() and get_option('pw-cat').enabled()
error('pw-cat is enabled but required dependency `sndfile` was not found.')
error('pw-cat is enabled but required dependency `sndfile` was not found.')
endif
summary({'Build pw-cat tool': build_pw_cat}, bool_yn: true, section: 'pw-cat/pw-play/pw-dump tool')
executable('pw-reserve',
'pw-reserve.c',
install: true,
dependencies : [dbus_dep, pipewire_dep],
'pw-reserve.c',
install: true,
dependencies : [dbus_dep, pipewire_dep],
)