# cpp-project-template **Repository Path**: gycherish/cpp-project-template ## Basic Information - **Project Name**: cpp-project-template - **Description**: C++项目目录结构模板 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 7 - **Forks**: 4 - **Created**: 2020-05-11 - **Last Updated**: 2025-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # C++项目目录组织结构 ``` ├── benchmark 基准测试代码目录 ├── cmake cmake模块 ├── doc 文档 ├── etc 配置文件目录 ├── examples 示例代码目录 ├── include 头文件目录 ├── resources 资源目录,比如程序的icon等 ├── src 源码目录 ├── tests 测试代码目录 ├── third_party 三方库 ├── tools 工具目录,比如存放一些辅助脚本 ├── .clang-format 使用clang-format对代码格式化的配置文件 ├── .clang-tidy 使用clang-tidy对代码静态检查的配置文件 ├── .gitignore git忽略项配置文件 ├── .gitmessage git提交模板文件 ├── CHANGELOG.md 更新日志 ├── CMakeLists.txt cmake项目工程文件 ├── config.h.in 用于cmake根据编译环境生成相应配置的模板 ├── LICENSE license文件 └── README.md 项目说明 ```