Skip to content

Building

Julien Coupey edited this page Dec 26, 2015 · 24 revisions

Dependencies

VROOM requires the boost library and a compiler with support for C++14 (e.g. gcc 4.8 or later).

Build

First get into the repo:

git clone https://github.com/jcoupey/vroom.git
cd vroom

Then create a bin folder in which the executable is built from the makefile:

mkdir bin 
cd src/
make
cd ..

You can now run the executable at ./bin/vroom.

Note on releases

Building from the default checkout branch (master) as described above will let you use the latest tagged release. However, depending on the development pace, this release branch can sometimes be quite behind the latest commits in term of functionality and performance. In that case, it is recommended to build from the develop branch.

Clone this wiki locally