Skip to content

Commit 37344d4

Browse files
committed
Add a temp Doxygen script
Generate API reference with local doxygen outside of the Bazel build TODO: remove after #6
1 parent 8faf320 commit 37344d4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/generate_doxy.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/bash
2+
# Generate doxygen documentation
3+
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
4+
DOXYDIR=$SCRIPT_DIR/doxygen
5+
mkdir -p $DOXYDIR
6+
cd $DOXYDIR && doxygen Doxyfile
7+
echo "API reference generated: $DOXYDIR/html/index.html"

0 commit comments

Comments
 (0)