BW3-Core/build_docu.sh

11 lines
236 B
Bash
Raw Permalink Normal View History

2019-09-19 17:34:59 +02:00
#!/bin/bash
echo "clean api documentation"
rm -r docu/docs/api/html
echo "generate api documentation"
doxygen docu/doxygen.ini
echo "build documentation"
source ./venv/bin/activate
python3 -m mkdocs build -f docu/mkdocs.yml
deactivate