Introduction to CMake
1. What is CMake CMake is a more advanced build configuration tool than make, supporting different platforms and compilers, generating corresponding Makefiles or vcproj projects (Visual Studio project files). By writing a CMakeLists.txt file, you can control the generated Makefile, thereby controlling the build process. The Makefile generated by CMake not only allows you to … Read more