mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-15 21:05:36 +00:00
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 )
|