Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/docs/build-arduplane.sh
9676 views
1
#!/usr/bin/env 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/arduplane
15
16
17