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:
parent
357e8327c4
commit
7f7c8a8b51
2427
docs/technical/doxygen.conf
Normal file
2427
docs/technical/doxygen.conf
Normal file
File diff suppressed because it is too large
Load Diff
15
docs/technical/doxygen.sh
Executable file
15
docs/technical/doxygen.sh
Executable 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/"
|
Loading…
Reference in New Issue
Block a user