Files
calls/tests/services/meson.build
Evangelos Ribeiro Tzaras e4a75a0844 tests: Add dbus server binary to dependencies
Otherwise we `meson test` will not compile the server
required for the DBus tests.

Closes: 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

21 lines
453 B
Meson

dbus_server = executable(
'calls-dbus-server',
'calls-server.c',
dbus_config_h,
calls_sources,
c_args: test_cflags,
link_args: test_link_args,
pie: true,
link_with: [calls_vala, libcalls],
dependencies: calls_deps,
include_directories: [calls_includes, test_includes],
)
service_file = 'org.gnome.Calls.service'
service = configure_file(
input: service_file + '.in',
output: service_file,
configuration: dbus_service_conf,
)