Nick's README file updates, doxygen page layout modification
parent
aae4b5b69c
commit
48d9c82713
|
@ -31,13 +31,13 @@
|
||||||
<collaborationgraph visible="$COLLABORATION_GRAPH"/>
|
<collaborationgraph visible="$COLLABORATION_GRAPH"/>
|
||||||
<allmemberslink visible="yes"/>
|
<allmemberslink visible="yes"/>
|
||||||
<memberdecl>
|
<memberdecl>
|
||||||
|
<membergroups visible="yes"/>
|
||||||
<publicmethods title=""/>
|
<publicmethods title=""/>
|
||||||
<publicstaticmethods title=""/>
|
<publicstaticmethods title=""/>
|
||||||
<publicattributes title=""/>
|
<publicattributes title=""/>
|
||||||
<publicstaticattributes title=""/>
|
<publicstaticattributes title=""/>
|
||||||
<publictypes title=""/>
|
<publictypes title=""/>
|
||||||
<publicslots title=""/>
|
<publicslots title=""/>
|
||||||
<membergroups visible="yes"/>
|
|
||||||
<nestedclasses visible="yes" title=""/>
|
<nestedclasses visible="yes" title=""/>
|
||||||
<signals title=""/>
|
<signals title=""/>
|
||||||
<protectedtypes title=""/>
|
<protectedtypes title=""/>
|
||||||
|
|
12
README
12
README
|
@ -47,6 +47,8 @@ Important Installation Notes Specific to GTSAM
|
||||||
1)
|
1)
|
||||||
GTSAM requires the following libraries to be installed on your system:
|
GTSAM requires the following libraries to be installed on your system:
|
||||||
- BOOST version 1.40 or greater (install through Linux repositories or MacPorts)
|
- BOOST version 1.40 or greater (install through Linux repositories or MacPorts)
|
||||||
|
- Automake
|
||||||
|
- libtool
|
||||||
|
|
||||||
2)
|
2)
|
||||||
GTSAM makes extensive use of debug assertions, even for checking input of
|
GTSAM makes extensive use of debug assertions, even for checking input of
|
||||||
|
@ -72,6 +74,8 @@ header-only Eigen.
|
||||||
Putting the above together, here are some sample ./configure commands for
|
Putting the above together, here are some sample ./configure commands for
|
||||||
compiling gtsam:
|
compiling gtsam:
|
||||||
|
|
||||||
|
NOTE: If checked out from SVN, before attempting to compile run the command ./autogen.sh
|
||||||
|
|
||||||
For Debugging (native Snow Leopard g++ compiler):
|
For Debugging (native Snow Leopard g++ compiler):
|
||||||
./configure CXXFLAGS="-fno-inline -g -Wall" \
|
./configure CXXFLAGS="-fno-inline -g -Wall" \
|
||||||
LDFLAGS="-fno-inline -g -Wall"
|
LDFLAGS="-fno-inline -g -Wall"
|
||||||
|
@ -98,9 +102,17 @@ run it in sub-directory of choice, e.g., starting out in the main GTSAM folder:
|
||||||
|
|
||||||
$] mkdir build
|
$] mkdir build
|
||||||
$] cd build
|
$] cd build
|
||||||
|
|
||||||
|
if you want to install:
|
||||||
|
|
||||||
$] ../configure ..... (command as above)
|
$] ../configure ..... (command as above)
|
||||||
$] make install
|
$] make install
|
||||||
|
|
||||||
|
or if you dont want to install then you can:
|
||||||
|
|
||||||
|
$] ../configure ..... (command as above)
|
||||||
|
$] ../configure --disable-shared
|
||||||
|
$] make (or make check)
|
||||||
|
|
||||||
Built-in Unit Tests:
|
Built-in Unit Tests:
|
||||||
--------------------
|
--------------------
|
||||||
|
|
Loading…
Reference in New Issue