From 5d326410d5121a5ae2e6897bde295799f15475c3 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 22 Aug 2022 00:05:38 +0200 Subject: [PATCH] use nproc in installation page --- pages/Getting Started/Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Getting Started/Installation.md b/pages/Getting Started/Installation.md index ecee593..edf5dbb 100644 --- a/pages/Getting Started/Installation.md +++ b/pages/Getting Started/Installation.md @@ -164,7 +164,7 @@ You can of course also change the `BUILD_TYPE` to `Debug`. Now, build: ```plain -cmake --build ./build --config Release --target all -j 10 +cmake --build ./build --config Release --target all -j $(nproc) ``` If you configured in `Debug`, change the `--config` to `Debug` as well.