Skip to content
Snippets Groups Projects
Commit 905e5a4d authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

build: added vrbrain to build_all.sh script

useful for ensuring it will keep building
parent affcea53
No related branches found
No related tags found
No related merge requests found
...@@ -66,4 +66,8 @@ test -n "$PX4_ROOT" && test -d "$PX4_ROOT" && { ...@@ -66,4 +66,8 @@ test -n "$PX4_ROOT" && test -d "$PX4_ROOT" && {
./Tools/scripts/build_all_px4.sh ./Tools/scripts/build_all_px4.sh
} }
test -n "$VRBRAIN_ROOT" && test -d "$VRBRAIN_ROOT" && {
./Tools/scripts/build_all_vrbrain.sh
}
exit 0 exit 0
#!/bin/bash
# build all targets for PX4
# This helps when doing large merges
# Andrew Tridgell, February 2013
. config.mk
set -e
set -x
for d in ArduPlane ArduCopter APMrover2; do
pushd $d
make vrbrain-clean
popd
done
echo "Testing ArduPlane build"
pushd ArduPlane
make vrbrain
popd
echo "Testing ArduCopter build"
pushd ArduCopter
make vrbrain
popd
echo "Testing APMrover2 build"
pushd APMrover2
make vrbrain
popd
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment