Make the build command use all cores

This commit is contained in:
:^) 2024-11-11 14:22:08 +01:00
parent 4f203aaec0
commit 0187c45f8e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ cd nutri
```bash
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
cmake --build build -j$(nproc)
```
Now you will find the `nutri` executable in the `build` dir.