什么是 Cmake

CMake 是一个开源的跨平台工具,它使用独立于编译器和平台的配置文件来生成特定于编译器和平台的本地构建工具文件。

Cmake 经常被用来编译 C/C++,但它本身也是可以用来编译其他语言的。
官网链接:cmake.org

Cmake 的安装

Windows 平台安装

使用 scoop安装

  1. scoop install cmake

CmakeLists.txt

  1. # Cmake 最小版本号
  2. cmake_minimum_required(VERSION 3.10)
  3. # 设置项目名称
  4. project(Tutorial)
  5. # add the executable
  6. add_executable(Tutorial tutorial.cxx)

Cmake 在 VSCode 中的使用

CMake 常用命令

  • add_library