2025-09-30 10:04:50 +08:00
2025-06-12 14:27:20 +08:00
2025-08-21 15:49:05 +08:00
2025-09-30 10:04:50 +08:00
2025-06-12 21:46:53 +08:00
2025-06-07 00:56:13 +08:00
2025-06-12 14:27:20 +08:00
2025-09-30 10:04:50 +08:00
2025-08-01 09:48:32 +08:00
2025-06-12 14:27:20 +08:00
2025-06-07 00:56:13 +08:00
2025-08-21 15:49:05 +08:00

前置要求

  • 编译器: 支持C++17的编译器 (GCC 7+, Clang 5+, MSVC 2017+)
  • CMake: 3.14或更高版本
  • Git: 用于克隆子模块

克隆项目

由于项目包含Git子模块请使用以下命令进行完整克隆

# 方法1: 递归克隆(推荐)
git clone --recursive https://github.com/your-username/Convention-CPP.git
cd Convention-CPP

# 方法2: 先克隆主项目,再初始化子模块
git clone https://github.com/your-username/Convention-CPP.git
cd Convention-CPP
git submodule update --init --recursive

更新子模块

如果子模块有更新,使用以下命令:

# 更新所有子模块到最新版本
git submodule update --remote

# 或者更新特定子模块
git submodule update --remote Convention/[nlohmann]
git submodule update --remote Convention/[Static]
Description
Convention-Template的CPP实现
Readme MIT 105 KiB
Languages
C++ 97.7%
CMake 2.3%