2012-01-11 06:25:12 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Add to PATH the default install path for doxygen on Mac OS X
|
|
|
|
|
|
|
|
PATH=$PATH:/Applications/Doxygen.app/Contents/Resources
|
|
|
|
|
|
|
|
|
|
|
|
# Run doxygen from the gtsam directory even if this script is run from another
|
|
|
|
# directory, so that the output 'doc' goes in the gtsam directory.
|
|
|
|
|
|
|
|
GTSAM_DIR=$(dirname "$0")
|
2012-06-23 06:08:48 +08:00
|
|
|
cd $GTSAM_DIR/doc
|
2012-01-11 06:25:12 +08:00
|
|
|
doxygen
|