diff --git a/web/content/docs/devguide/getting-started/build-configuration/index.md b/web/content/docs/devguide/getting-started/build-configuration/index.md
index 134857424ecae64ffb593599d8b4a2646f07e528..9590c1b0712cd7ad89f0db6e7452feb60f58db6b 100644
--- a/web/content/docs/devguide/getting-started/build-configuration/index.md
+++ b/web/content/docs/devguide/getting-started/build-configuration/index.md
@@ -153,15 +153,16 @@ CMake comes with a graphical tool called `cmake-gui`. You can find it in the **W
 
 <div class='linux'>
 
-A more convenient way of running CMake on the command line is to use the `ccmake` tool. This is a shell tool but with some graphical user interface. To use it just run `ccmake` instead of `cmake`:
+A more convenient way of running CMake on the command line is to use the `ccmake` tool. This is a shell tool but with some graphical user interface. If you want to use a preset configure with regular `cmake` first (`ccmake` **does not support presets**) and then run `ccmake` supplying the path to the build directory:
 
 ```bash
-ccmake --preset release
+cmake --preset release
+ccmake ../build/release
 ```
 
-First press <kbd>C</kbd> to **Configure**. You are now presented the available configuration options. You can navigate in the list with the cursor keys and toggle / alter options with <kbd>Enter</kbd>. You may also press <kbd>T</kbd> to toggle (previously hidden) advanced options. Press <kbd>C</kbd> again until the **Generate**-option becomes visible. Press <kbd>G</kbd> to generate the project files and exit `ccmake`.
+You are now presented the available configuration options. You can navigate in the list with the cursor keys and toggle / alter options with <kbd>Enter</kbd>. You may also press <kbd>T</kbd> to toggle (previously hidden) advanced options. Press <kbd>C</kbd> again until the **Generate**-option becomes visible. Press <kbd>G</kbd> to generate the project files and exit `ccmake`.
 
-There is also the tool `cmake-gui` available, please see the Win-Tab for a description.
+There is also the tool `cmake-gui` available (which supports presets), please see the Win-Tab for a description.
 
 </div>