Skip to content

Commit

Permalink
integrators guide
Browse files Browse the repository at this point in the history
  • Loading branch information
caseykelso committed Mar 31, 2017
1 parent 6e8d963 commit ae7d502
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ build.app
docopt
build.docopt
asio
build.*
install*
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
Embedded XModem
===============

# Integrator Guide

Setup Environment - Ubuntu 16.10
--------------------------------
```bash
sudo apt-get install build-essential socat lrzsz minicom ant git libgtest-dev cmake
```

Build libXmodem
--------------------------------
```bash
mkdir install
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../install
make install -j8
```

Build Test
--------------------------------
```bash
mkdir build.test
cd build.test
cmake ../tests/ -DCMAKE_INSTALL_PREFIX=$PWD/../install -DXMODEM_TEST=1 -DINSTALL_DIR=$PWD/../install
make install -j8
```



# Development

Setup Environment - OSX
Expand Down

0 comments on commit ae7d502

Please sign in to comment.