持续更新!

1
# CMake最低版本号要求
2
cmake_minimum_required(VERSION 3.1)
3
4
#项目信息
5
project(Demo1)
6
7
#指定生成目标
8
add_executable(Demo1 main.cpp)