mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
9 lines
232 B
Bash
Executable File
9 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#A simple script to install the APM SITL environment into cygwin
|
|
|
|
git clone git://github.com/ArduPilot/ardupilot.git
|
|
cd ./ardupilot
|
|
git submodule update --init --recursive
|
|
./modules/waf/waf-light configure --board=sitl
|