summaryrefslogtreecommitdiff
path: root/cpp/examples/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/examples/Makefile.am')
-rw-r--r--cpp/examples/Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/examples/Makefile.am b/cpp/examples/Makefile.am
new file mode 100644
index 0000000000..955411ab98
--- /dev/null
+++ b/cpp/examples/Makefile.am
@@ -0,0 +1,14 @@
+noinst_PROGRAMS=create_queue topic_listener topic_publisher
+INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/src/gen -I$(top_builddir)src/gen
+lib_client = $(top_builddir)/src/libqpidclient.la
+
+
+create_queue_LDADD=$(lib_client)
+create_queue_SOURCES=create_queue.cpp
+
+topic_listener_LDADD=$(lib_client)
+topic_listener_SOURCES=topic_listener.cpp
+
+topic_publisher_LDADD=$(lib_client)
+topic_publisher_SOURCES=topic_publisher.cpp
+