about summary refs log tree commit diff
path: root/examples/C/glib/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C/glib/meson.build')
-rw-r--r--examples/C/glib/meson.build19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/C/glib/meson.build b/examples/C/glib/meson.build
deleted file mode 100644
index edc4dbb1..00000000
--- a/examples/C/glib/meson.build
+++ /dev/null
@@ -1,19 +0,0 @@
-examples = [
-  ['add-connection-gdbus', [libnm_enum[1]], [libnm_inc], [uuid_dep]],
-  ['add-connection-libnm', [], [], [libnm_dep]],
-  ['get-active-connections-gdbus', [libnm_enum[1]], [libnm_inc], []],
-  ['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],
-    include_directories: example[2],
-    dependencies: [nm_core_dep] + example[3],
-  )
-endforeach