mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 03:40:07 +01:00
Like with "libnm-core/", split "libnm/" into different directories for the public headers, for the implementation and for the helper "aux" library.
20 lines
634 B
Meson
20 lines
634 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
examples = [
|
|
['add-connection-gdbus', [libnm_client_public_enum_sources[1]], [uuid_dep]],
|
|
['add-connection-libnm', [], [libnm_dep]],
|
|
['get-active-connections-gdbus', [libnm_client_public_enum_sources[1]], []],
|
|
['get-ap-info-libnm', [], [libnm_dep]],
|
|
['list-connections-gdbus', [], []],
|
|
['list-connections-libnm', [], [libnm_dep]],
|
|
['monitor-nm-running-gdbus', [], []],
|
|
['monitor-nm-state-gdbus', [], []],
|
|
]
|
|
|
|
foreach example: examples
|
|
executable(
|
|
example[0],
|
|
[example[0] + '.c'] + example[1],
|
|
dependencies: [libnm_nm_default_dep] + example[2],
|
|
)
|
|
endforeach
|