Translations:Development/Tutorials/First program/KF5/30/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:
mkdir build && cd build
You can invoke CMake and make manually:
cmake .. && make