mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
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
|