You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/03 04:53:52 UTC

svn commit: r452300 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt

Author: chirino
Date: Mon Oct  2 19:53:52 2006
New Revision: 452300

URL: http://svn.apache.org/viewvc?view=rev&rev=452300
Log:
Added some documentation on how to use the automake generated build system

Modified:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt?view=diff&rev=452300&r1=452299&r2=452300
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/readme.txt Mon Oct  2 19:53:52 2006
@@ -32,6 +32,55 @@
 you can change this by changing the declaration in IntegrationCommon.cpp
 in the test-integration src tree.
 
+Developers Building on Unix/Linux/OS X from an SVN Checkout
+--------------------------------------------------------------------------
+
+To Generate the ./configure script use to create the Makefiles, you need
+the following software installed:
+
+ * autoconf version 2.59
+ * automake version 1.9.6
+ * cppunit version 1.10.2
+
+Later versions will probably work too with a little tweaking.  Once that's 
+installed, run:
+
+  ./autogen.sh
+
+You should run this anytime you chance configure.ac or any of the
+Makefile.am files.  Now that the configure script is generated follow 
+the directions in the next section to complete the build
+
+Users Building on Unix/Linux/OS X 
+--------------------------------------------------------------------------
+
+Use the supplied configure script to configure the software.  The configure
+script will customize the way the software is built and installed into 
+your system along with detecting the available libraries that have been 
+installed.  To use the default configuration just run:
+
+  ./configure
+
+For more help on how to customize the build configuration, run:
+
+  ./configure --help
+
+Once the configure script has run successfully, you are ready to build.  Run
+
+  make
+
+To compile the ActiveMQ libraries and examples.  If you have cppunit installed
+on your system you can also run:
+
+  make check
+
+This will verify that the library is functioning correctly and also generate the 
+integration tests binary.
+
+To generate the doxygen documentation for the project, just run:
+
+  make doxygen-run
+
 Notes for Windows users
 --------------------------------------------------------------------------