Skip to content
Tom Moxon edited this page Feb 23, 2016 · 1 revision

Embedis Development Environment

The git repository includes a submodule for the testing framework and a branch 'gh-pages' for the development generated documentation. The recommended commands to use are as follows:

git clone {origin_url} embedis
cd embedis
git submodule init
git submodule update
git clone {origin_url} html --branch gh-pages

You'll need a few tools to build the tests and documentation. These are common tools available for all operating systems so you shouldn't have too much trouble getting them installed.

CMake can create a typical Makefile as well as project files for Xcode, Visual Studio, and many others. Here's a quick start for Makefile users:

$ cmake .
$ make && ctest
$ make doc

Clone this wiki locally