Skip to content
Snippets Groups Projects
Commit de51076c authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Merge branch 'add_description' into 'main'

Add description

See merge request !1
parents 1a8bb748 ecc8889d
Branches
No related tags found
1 merge request!1Add description
.vscode
build
# Microbenchmarks
A collection of microbenchmarks for C++ code.
## Building
The project relies on CMake to build the code.
```
# clone the current project then create a build configuration by running
cmake -B build [path_to_repository]
make -C build
```
you can specify another build program by providing the option `-G`,
for example to use Ninja `-G Ninja`.
The commands executes will then be
```
cmake -B build [path_to_repository]
ninja -C build
```
To execute the code you can just run
```
build/microbenchmarks
```
## Add another benchmark
If you want to add another benchmark you can
add a c++ into benchmarks and then add it to the `CMakeLists.txt` file in the target sections.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment