CMake is a cross-platform build system that generates build program for C/C++, FORTRAN etc.
- C/C++ compiler installed on your system
- CMake installed on your system (Download CMake)
mkdir build
cd build
cmake .. # Configure the project CMakeLists.txt
make # Build the project (using Makefile)