diff options
| author | Alan Conway <aconway@apache.org> | 2007-06-12 19:37:17 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-06-12 19:37:17 +0000 |
| commit | b59dcd9cfcdc5898c8d1c3b55a28065a4fc4ce68 (patch) | |
| tree | fe810d2ff8973b525a660756bd11ba0281e973a2 /cpp/examples/Makefile.am | |
| parent | ac938dd0c0a454f87a3d175acb7b67b086fce931 (diff) | |
| download | qpid-python-b59dcd9cfcdc5898c8d1c3b55a28065a4fc4ce68.tar.gz | |
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
Diffstat (limited to 'cpp/examples/Makefile.am')
| -rw-r--r-- | cpp/examples/Makefile.am | 14 |
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 + |
