wireplumber/tests/wp/meson.build
George Kiagiadakis a71d433a5e lib: implement WpEndpoint (interface + Proxy + Exported + unit test)
heavily based on the WpSession implementation
2019-12-11 19:05:09 +02:00

35 lines
785 B
Meson

common_deps = [gobject_dep, gio_dep, wp_dep, pipewire_dep]
common_env = [
'G_TEST_SRCDIR=@0@'.format(meson.current_source_dir()),
'G_TEST_BUILDDIR=@0@'.format(meson.current_build_dir()),
]
test(
'test-endpoint',
executable('test-endpoint', 'endpoint.c', dependencies: common_deps),
env: common_env,
)
test(
'test-properties',
executable('test-properties', 'properties.c', dependencies: common_deps),
env: common_env,
)
test(
'test-proxy',
executable('test-proxy', 'proxy.c', dependencies: common_deps),
env: common_env,
)
test(
'test-session',
executable('test-session', 'session.c', dependencies: common_deps),
env: common_env,
)
test(
'test-spa-props',
executable('test-spa-props', 'spa-props.c', dependencies: common_deps),
env: common_env,
)