doudou / utilmm

Util--: a C++ toolkit library

This URL has Read+Write access

Sylvain Joyeux (author)
Tue Oct 20 05:41:28 -0700 2009
commit  73c5ffa93e4d267b6e53487e6153795bcc50a860
tree    60ad37609c1de2cb41b9e0341c907076d5f9b37c
parent  17802811508c713f33e1bf090dd08b7cb77a7ce7
utilmm /
README.txt
/*! \mainpage Util--: A C++ toolkit library
  
Util-- is a C++ toolkit library written by Sylvain Joyeux <sylvain.joyeux@m4x.org> and Frederic Py <fpy@laas.fr>

Copyright 2003-2008 LAAS/CNRS <openrobots@laas.fr>

This software is provided under the CeCILL B License. This license provides is
OSI-approved and provides terms of use comparable to the BSD license. See
LICENSE.txt and LICENSE.fr.txt, provided with the sources, for the complete terms.

\section Installation

\subsection Getting the source code
Releases are available on SourceForge: <a
href="http://sourceforge.net/projects/utilmm/">http://sourceforge.net/projects/utilmm/</a>.
You can access this project page from anywhere in the documentation by clicking
on the SourceForge.net logo at the bottom of documentation pages.

The development repository is managed by git and is (for now) publicly available in GitHub:

<pre>
  git clone git://github.com/doudou/utilmm.git
</pre>

(see <a href="http://github.com/doudou/">this page</a> for more information)

\subsection Dependencies
  - cmake and pkg-config
  - Boost libraries: boost, boost/thread, boost/regex, boost/filesystem plus the boost/graph headers
  - Boost/test to build the test suite
  - Doxygen for the documentation

\subsection Installation instructions
 
Go into the directory where the sources are installed and do

<pre>
   mkdir build
   cd build
   cmake ..
   make
   make doc
</pre>
 
Then, as root,
<pre>
   make install
</pre>

Alternatively, you can add the \c -DCMAKE_INSTALL_PREFIX=path/to/the/installation/target option to cmake
to install the files in a custom directory

*/