Skip to content

Building

Julien Coupey edited this page May 3, 2017 · 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 and checkout the latest stable version:

git clone https://github.com/jcoupey/vroom.git
cd vroom
git checkout v1.1.0

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 (see usage).

Clone this wiki locally