https://www.bilibili.com/video/BV16P4y1g7MH
https://github.com/parallel101/course/tree/master/11

现代 CMake 指的是 CMake 3.x。
古代 CMake 指的是 CMake 2.x。

通过互联网和学校课程,许多人认识的 CMake 都是古代 CMake。
现代 CMake 和古代 CMake 相比,使用更方便,功能更强大。

命令行调用

image.png

  • --B: 构建makefile文件
  • --build: 调用对应平台的构建
    • Linux: gcc
    • Windows: MS Build
  • -- parallel 4: 并行构建
    • 类似make -j4
  • -- target: 构建制定目标
    • 类似make install

语法

  • 古代CMake

image.png

  • 现代CMake

image.png

现代CMake的public特性