2016-02-24 16:56:39 +01:00

14 lines
269 B
Bash
Executable File

DOXYGEN=/Applications/Doxygen.app/Contents/Resources/doxygen
if ! [ -f $DOXYGEN ]; then
echo :: error : Requires Doxygen in Applications folder
exit 1
fi
$DOXYGEN "../Documentation/Doxyfile"
# Generate Xcode documentation set
pushd build/Documentation
make
popd