Introduction to CMake build system and CMakeLists file.
CMake is the meta build system widely used for C and C++ projects and it generates build scripts for target platform. CMake is platform independent and generates Makefile on the Linux. When the cmake command is launched it parses an instruction file called CMakeLists.txt. The name of the file is case sensitive and should be […]