ardupilot/README.txt
James Goppert 48484a78cb Added cpack packaging, ArduRover/ArduBoat/apo, building with cmake
ArduPlane/ ArduCopter should be easy to convert. The only thing
left for cmake is sketch processing, upstream dev is workign on this
at github, see arduino-cmake project.
2011-09-30 20:24:02 -04:00

27 lines
738 B
Plaintext

Building using arduino
--------------------------
To install the libraries:
- copy Library Directories to your \arduino\hardware\libraries\ or arduino\libraries directory
- Restart arduino IDE
* Each library comes with a simple example. You can find the examples in menu File->Examples
Building using make
-----------------------------------------------
- go to directory of sketch and type make.
Building using cmake
-----------------------------------------------
- mkdir build
- cd build
- cmake ..
- make (will build every sketch)
- make ArduPlane (will build just ArduPlane etc.)
Build a package using cpack
-----------------------------------------------
- cd build
- cmake ..
- make package
- make package_source