mirror of https://github.com/ArduPilot/ardupilot
10 lines
185 B
Bash
10 lines
185 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#A simple script to install the APM SITL environment into cygwin
|
||
|
|
||
|
git clone git://github.com/tridge/jsbsim.git
|
||
|
cd jsbsim
|
||
|
./autogen.sh
|
||
|
make
|
||
|
cp src/JSBSim.exe /usr/local/bin
|