14 lines
269 B
Bash
Executable File
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
|