diff options
author | Thomas Haller <thaller@redhat.com> | 2021-02-19 15:23:34 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2021-02-24 12:48:37 +0100 |
commit | 9bba4871f3d46a3eccec84ac63e053e1dd1775b9 (patch) | |
tree | 45a7c0786e32220ff5100a171f5c9efb889b0621 /examples | |
parent | b53c50e7786c6a5015fae0fc7538ccdd460ef985 (diff) | |
download | NetworkManager-9bba4871f3d46a3eccec84ac63e053e1dd1775b9.tar.gz |
build: move "libnm/" to "src/" and split it
Like with "libnm-core/", split "libnm/" into different directories for
the public headers, for the implementation and for the helper "aux"
library.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/C/glib/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/C/glib/meson.build b/examples/C/glib/meson.build index 41c46ca806..cf26fdf4bf 100644 --- a/examples/C/glib/meson.build +++ b/examples/C/glib/meson.build @@ -1,9 +1,9 @@ # SPDX-License-Identifier: LGPL-2.1-or-later examples = [ - ['add-connection-gdbus', [libnm_enum_sources[1]], [uuid_dep]], + ['add-connection-gdbus', [libnm_client_public_enum_sources[1]], [uuid_dep]], ['add-connection-libnm', [], [libnm_dep]], - ['get-active-connections-gdbus', [libnm_enum_sources[1]], []], + ['get-active-connections-gdbus', [libnm_client_public_enum_sources[1]], []], ['get-ap-info-libnm', [], [libnm_dep]], ['list-connections-gdbus', [], []], ['list-connections-libnm', [], [libnm_dep]], |