summary refs log tree commit diff
path: root/examples/C/qt/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'examples/C/qt/Makefile.am')
-rw-r--r--examples/C/qt/Makefile.am24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/C/qt/Makefile.am b/examples/C/qt/Makefile.am
new file mode 100644
index 00000000..e1e17b38
--- /dev/null
+++ b/examples/C/qt/Makefile.am
@@ -0,0 +1,24 @@
+INCLUDES = -I${top_srcdir}/include
+
+AM_CPPFLAGS = \
+	$(DBUS_CFLAGS) \
+	$(QT_CFLAGS)
+
+noinst_PROGRAMS = \
+	add-connection-wired \
+	list-connections
+
+add_connection_wired_SOURCES = add-connection-wired.cpp
+add_connection_wired_LDADD = \
+	$(DBUS_LIBS) \
+	$(QT_LIBS)
+
+list_connections_SOURCES = list-connections.cpp
+list_connections_LDADD = \
+	$(DBUS_LIBS) \
+	$(QT_LIBS)
+
+EXTRA_DIST = \
+	add-connection-wired.cpp \
+	list-connections.cpp
+