1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-07-02 15:09:31 +00:00
Purism-Calls/tests/services/meson.build
Evangelos Ribeiro Tzaras ae6e232f98 tests: Add DBus server binary
This should facilitate DBus API testing.
2023-01-20 17:12:02 +01:00

21 lines
651 B
Meson

t = 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)