什么是 Cmake
CMake 是一个开源的跨平台工具,它使用独立于编译器和平台的配置文件来生成特定于编译器和平台的本地构建工具文件。
Cmake 经常被用来编译 C/C++,但它本身也是可以用来编译其他语言的。
官网链接:cmake.org
Cmake 的安装
Windows 平台安装
使用 scoop
安装
scoop install cmake
CmakeLists.txt
# Cmake 最小版本号
cmake_minimum_required(VERSION 3.10)
# 设置项目名称
project(Tutorial)
# add the executable
add_executable(Tutorial tutorial.cxx)
Cmake 在 VSCode 中的使用
CMake 常用命令
- add_library