Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 712 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 712 Bytes

cmake-examples-byHBX

This is a note by hbx regarding the usage of CMake

Introduction to CMake

  • CMake is a cross-platform installation (compilation) tool that can describe the installation (compilation process) of all platforms with simple statements. It can generate various makefiles or project files, and the configuration file of CMake is named CMakeLists.txt. In other words, CMake code is written in the CMakeLists.txt file.
  • In a nutshell, CMake is the language used to combine multiple cpp and hpp files to build a large project.