Skip to content
Snippets Groups Projects
Unverified Commit 3d0cbeb4 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

[docs] Added note on CMake's -j option.

parent 54eb1126
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,12 @@ You should also have at least 8 GB of RAM and even this can be not enough when c
cmake --build . --config Release -- /m:1 /p:CL_MPCount=1
```
**OR** if you have [CMake >= 3.12](https://cmake.org/cmake/help/v3.12/manual/cmake.1.html#build-tool-mode) you can simply use `-j 1`:
```
cmake --build . --config Release -j 1
```
If this still fails you can disable building of the failing processes, e.g.:
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment