3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 04:59:24 +01:00

Doxygen configuration & autorun script

This commit is contained in:
James Lu 2016-07-23 19:42:17 -07:00
parent 357e8327c4
commit 7f7c8a8b51
2 changed files with 2442 additions and 0 deletions

2427
docs/technical/doxygen.conf Normal file

File diff suppressed because it is too large Load Diff

15
docs/technical/doxygen.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
# Runs Doxygen on PyLink.
# Note: to change the outpuit path, doxygen.conf also has to be updated too!
OUTDIR="../../../pylink.github.io"
if [ ! -d "$OUTDIR" ]; then
echo "Git clone https://github.com/PyLink/pylink.github.io to $OUTDIR and then rerun this script."
exit 1
fi
CURDIR="$(pwd)"
doxygen doxygen.conf
cp -R html/* "$OUTDIR"
rm -r "html/"