C++ 代码
文件名:first_cmake.cpp
#include <iostream>
using namespace std;int main()
{cout<< "A" << endl;return 0;
}
CMakeLists.txt 文件
#CMakeLists.txt
# 设置:版本
cmake_minimum_required(VERSION 3.20)# 定义 :项目名称
project(first_cmake)# 变成执行程序
# 参数:项目名字、源码名字、
add_executable(first_cmake first_cmake.cpp)
终端命令
camke -S . -B build
cmake --build build
./build/first_cmake