Files
calls/plugins/meson.build
Evangelos Ribeiro Tzaras 3184fa3af0 tests: Depend on .plugin files to exist
When .plugin files are missing, the plugins will not be discoverable.
These were only getting built when run with `meson compile`,
but not for `meson test`.

Helps: https://gitlab.gnome.org/GNOME/calls/-/issues/719

Signed-off-by: Evangelos Ribeiro Tzaras <devrtz@fortysixandtwo.eu>
Part-of: <https://gitlab.gnome.org/GNOME/calls/-/merge_requests/798>
2025-10-28 13:33:28 +00:00

12 lines
293 B
Meson

calls_provider_plugin_libdir = join_paths(full_calls_plugin_libdir, 'provider')
plugins_test_depends = []
subdir('provider/mm')
subdir('provider/dummy')
subdir('provider/ofono')
subdir('provider/sip')
subdir('provider/tests')
calls_plugins = [calls_mm, calls_dummy, calls_ofono, calls_sip]