Make the build command use all cores
This commit is contained in:
parent
4f203aaec0
commit
0187c45f8e
|
@ -35,7 +35,7 @@ cd nutri
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cmake -B build -DCMAKE_BUILD_TYPE=Release
|
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.
|
Now you will find the `nutri` executable in the `build` dir.
|
||||||
|
|
Loading…
Reference in New Issue