summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2019-09-10 09:17:23 +0200
committerThomas Haller <thaller@redhat.com>2019-10-01 09:49:33 +0200
commitcaf470f788f69e91f09985313f61ced414514b42 (patch)
treef886f6fc17e8100a4bbf9266307d789acea905ef /examples
parent1cd615288e2add0f129ccf9c9de8fb47585d5dce (diff)
meson: Improve targets involving libnm library
The targets that involve the use of the `libnm` library have been improved by applying a set of changes: - Generated enum sources variable `libnm_enum` has been renamed to `libnm_enum_sources` to clearly specify what it is holding. - Indentation in the `libnm` build and test files has been fixed. - Set of objects used in targets have been grouped together.
Diffstat (limited to 'examples')
-rw-r--r--examples/C/glib/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/C/glib/meson.build b/examples/C/glib/meson.build
index b095718099..7471ecad22 100644
--- a/examples/C/glib/meson.build
+++ b/examples/C/glib/meson.build
@@ -1,7 +1,7 @@
examples = [
- ['add-connection-gdbus', [libnm_enum[1]], [uuid_dep]],
+ ['add-connection-gdbus', [libnm_enum_sources[1]], [uuid_dep]],
['add-connection-libnm', [], [libnm_dep]],
- ['get-active-connections-gdbus', [libnm_enum[1]], []],
+ ['get-active-connections-gdbus', [libnm_enum_sources[1]], []],
['get-ap-info-libnm', [], [libnm_dep]],
['list-connections-gdbus', [], []],
['list-connections-libnm', [], [libnm_dep]],