Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

First time build, which includes generating makefiles:

 

cd incubator-corinthia
git pull
mkdir build
cd build
cmake -G 'Unix Makefiles' ..
make
 

Note that the build directory should be different from the source directory. The example above uses a subdirectory of the source directory, which is fine - but you can also use one in a completely different location as well.

...

If you work locally or in a branch (recommend) do not do a "git pull".

Testing Corinthia

...

cd inbubator-corinthia
./build/bin/dfutil -test ./tests

...