title: CMake 模板
date: 2021-06-29 18:40:15
tags: [C++, CMake]
CMake 模板
此模板针对于小型的 C/C++ 项目使用。
我们开发的 C/C++ 项目一般的文件树结构为:
.
|-- main.cpp
`-- src
|-- hello.cpp
`-- hello.h
添加完CMakeLists.txt
后,长这样:
.
|-- CMakeLists.txt
|-- main.cpp
`-- src
|-- CMakeLists.txt
|-- hello.cpp