diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2019-01-25 11:24:41 +0100 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2019-01-25 11:24:41 +0100 |
| commit | bbae86d3d2997a853ca0365e8eb7a3ca7489ee09 (patch) | |
| tree | 1f7fa49b47ab13aea3effbe839559d221f6323b4 /introspection/meson.build | |
| parent | 404ebe62622150e77e311777dff8617eb974e834 (diff) | |
New upstream version 1.15.2
Diffstat (limited to 'introspection/meson.build')
| -rw-r--r-- | introspection/meson.build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/introspection/meson.build b/introspection/meson.build index 35d8c87c..ef2ad9c1 100644 --- a/introspection/meson.build +++ b/introspection/meson.build @@ -48,7 +48,7 @@ ifaces = [ 'org.freedesktop.NetworkManager.Settings', 'org.freedesktop.NetworkManager.VPN.Connection', 'org.freedesktop.NetworkManager.VPN.Plugin', - 'org.freedesktop.NetworkManager.WiMax.Nsp' + 'org.freedesktop.NetworkManager.WiMax.Nsp', ] ifaces_xmls = [] @@ -66,7 +66,7 @@ foreach iface: ifaces iface_xml, interface_prefix: 'org.freedesktop.NetworkManager', namespace: 'NMDBus', - docbook: 'dbus' + docbook: 'dbus', ) sources += res @@ -82,14 +82,14 @@ endforeach install_data( ifaces_xmls, - install_dir: dbus_ifaces_dir + install_dir: dbus_ifaces_dir, ) libnmdbus = static_library( 'nmdbus', sources: sources, include_directories: top_inc, - dependencies: glib_dep + dependencies: glib_dep, ) libnmdbus_dep = declare_dependency( @@ -97,5 +97,5 @@ libnmdbus_dep = declare_dependency( # libNetworkManagerBase and libNetworkManager #sources: sources, include_directories: include_directories('.'), - link_with: libnmdbus + link_with: libnmdbus, ) |