Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 614 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (29 loc) · 614 Bytes

Contribution Guidelines

We are under development! Feel free to make our Contribution Guidelines better!

Building the examples

$ cmake --version 
cmake version 3.16.3
$ mkdir build && cd build
$ CXX=clang++ cmake ..
$ make -sj

Building the tests

$ mkdir build && cd build
$ CXX=clang++ cmake .. -DTESTS=ON
$ make -sj
$ make test

Building the benchmarks

$ mkdir build && cd build
$ CXX=clang++ cmake .. -DBENCHMARKS=ON
$ make -sj

Building the documentation

$ mkdir build && cd build
$ CXX=clang++ cmake .. -DDOCS=ON
$ doxygen Doxyfile.Documentation