Skip to content

Building

Frank Earl edited this page Dec 12, 2019 · 1 revision

Building is straightforward thanks to our using CMake to assemble things for us and everything being largely self-contained in the source tree for the apps.

In tree build:

cd
cmake .
make

That's it.

Out of tree build:

mkdir <build_dir>
cd <build_dir>
cmake <path_to_runit>
make

Again, that's it.

Clone this wiki locally