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>
21 lines
453 B
Meson
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,
|
|
)
|