From b59dcd9cfcdc5898c8d1c3b55a28065a4fc4ce68 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Tue, 12 Jun 2007 19:37:17 +0000 Subject: Initial examples directory with jrobies example programs and Makefile.am. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@546612 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/examples/Makefile.am | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cpp/examples/Makefile.am (limited to 'cpp/examples/Makefile.am') 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 + -- cgit v1.2.1