about summary refs log tree commit diff
path: root/examples/C/glib/meson.build
blob: 8899a90fa43d875cfb48c488defc939d94d3c3de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: LGPL-2.1-or-later

examples = [
  ['add-connection-gdbus',         [uuid_dep]],
  ['add-connection-libnm',         []],
  ['get-active-connections-gdbus', []],
  ['get-ap-info-libnm',            []],
  ['list-connections-gdbus',       []],
  ['list-connections-libnm',       []],
  ['monitor-nm-running-gdbus',     []],
  ['monitor-nm-state-gdbus',       []],
  ['vpn-import-libnm',              []],
]

foreach example: examples
  executable(
    example[0],
    [example[0] + '.c'],
    dependencies: [
      libnm_dep,
    ] + example[1],
  )
endforeach