Getting Started — Mastering CMake
cmake.org › cmake › helpThis interface is a terminal-based text application that is very similar to the cmake-gui. To run ccmake, change directories into the directory where you want the binaries to be placed. Then run ccmake with the path to the source directory on the command line. This will start the text interface as shown in Figure 2.
CMake Tutorial — Mastering CMake
cmake.org › cmake › helpmkdir Step1_build. Next, navigate to the build directory and run CMake to configure the project and generate a native build system: cd Step1_build cmake ../Step1. Then call that build system to actually compile/link the project: cmake --build . Finally, try to use the newly built Tutorial with these commands:
Why CMake? — Mastering CMake
cmake.org › cmake › helpMastering CMake » If you have ever maintained the build and installation process for a software package, you will be interested in CMake. CMake is an open-source build system generator for software projects that allows developers to specify build parameters in a simple, portable, text file format.