Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 595 Bytes

File metadata and controls

30 lines (25 loc) · 595 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
$ CXX=clang++ cmake -B build
$ cmake --build build -j

Building the tests

$ CXX=clang++ cmake -B build -DTESTS=ON
$ cmake --build build -j
$ ctest --test-dir build

Building the benchmarks

$ CXX=clang++ cmake -B build -DBENCHMARKS=ON
$ cmake --build build -j

Building the documentation

$ CXX=clang++ cmake -B build -DDOCS=ON
$ doxygen build/Doxyfile.Documentation