mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-16 21:36:28 +00:00
ee5629fd12
This reverts commit 3ef10bf60a
.
The libgdbofono doesn't need to be installed, nor should it be at
least for now.
19 lines
647 B
Meson
19 lines
647 B
Meson
gnome = import('gnome')
|
|
dbus_interfaces = ['manager', 'modem', 'call']
|
|
|
|
gdbus_src = []
|
|
foreach iface: dbus_interfaces
|
|
gdbus_src += gnome.gdbus_codegen('gdbo-' + iface,
|
|
iface + '.xml',
|
|
interface_prefix: 'org.ofono.',
|
|
namespace: 'GDBO')
|
|
endforeach
|
|
|
|
deps = [ dependency('gio-2.0'),
|
|
dependency('gio-unix-2.0'),
|
|
]
|
|
|
|
gdbofono_lib = static_library('gdbofono',
|
|
gdbus_src,
|
|
include_directories : include_directories('..'),
|
|
dependencies : deps )
|