All translations

Enter a message name below to show all available translations.

Message

Found one translation.

NameCurrent message text
 h English (en)While you can run cmake directly inside the source code directory itself, it is a best practice, and actually enforced in some KDE software, to use a separate build directory and run cmake from there:
<syntaxhighlight lang="bash">
mkdir build && cd build
</syntaxhighlight>
You can invoke CMake and make manually:
<syntaxhighlight lang="bash">
cmake .. && make
</syntaxhighlight>