A modern C++ project template with a robust development environment and best practices built-in.
- Development Containers for consistent development environments
- CMake build system
- GoogleTest for unit testing
- Clang-Format for code formatting
.
├── src/ # Source files
├── test/ # Test files
├── third_party/ # External dependencies
├── .devcontainer/ # Development container configuration
├── .github/ # GitHub Actions workflows
└── CMakeLists.txt # CMake build configuration
- Docker Desktop
- VS Code with the Dev Containers extension
- Git
-
Clone this repository:
git clone https://github.com/yourusername/cpp-project-template.git cd cpp-project-template
-
Initialize and update submodules:
git submodule update --init --recursive
-
Open in VS Code:
code .
-
When prompted, click "Reopen in Container" to start development in the containerized environment.
mkdir build
cd build
cmake ..
cmake --build .
cd build
ctest
This project is licensed under the MIT license.