We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f455911 commit 0243c92Copy full SHA for 0243c92
docs/build-ardusub.sh
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3
+
4
+cd $DIR/..
5
6
+. docs/setup.sh
7
8
+if [ ! -f $DOCS_OUTPUT_BASE/tags/libraries ];
9
+then
10
+ echo "Must build libraries first"
11
+ exit 0
12
+fi
13
14
+doxygen docs/config/ardusub
15
docs/config/ardusub
@@ -0,0 +1,8 @@
+@INCLUDE = docs/config/default
+PROJECT_NAME = "APM:Sub"
+INPUT = ArduSub/
+OUTPUT_DIRECTORY = $(DOCS_OUTPUT_BASE)/ArduSub
+HTML_OUTPUT = .
+TAGFILES = $(DOCS_OUTPUT_BASE)/tags/libraries=../libraries
0 commit comments