CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/docs/build-arducopter.sh
Views: 1798
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/arducopter
15
16
17