A powerful and interactive C++ project generator written in Rust. It helps you quickly set up new C++ projects with modern best practices and your preferred configurations.
- π― Interactive CLI with smart defaults
- ποΈ Multiple build systems (CMake, Make)
- π¦ Package manager integration (Conan, Vcpkg)
- β Testing framework setup (doctest, Google Test, Catch2, Boost.Test)
- π Code quality tools (clang-format, clang-tidy, cppcheck)
- π License management (MIT, Apache-2.0, GPL-3.0, BSD-3-Clause)
- π¨ Project templates (Executable, Library)
- π Git initialization
- C++ compiler - clang or gcc
- CMake or Make build system
- Optional: Conan or Vcpkg package manager
- Optional: clang-format, clang-tidy, or cppcheck for code quality tools
cargo build
Simply run:
cppup
Follow the interactive prompts to configure your project.
Create a new executable project with specific settings:
cppup --name my-project \
--description "My awesome C++ project" \
--project-type executable \
--build-system cmake \
--cpp-standard 17 \
--package-manager conan \
--test-framework doctest \
--license MIT \
--quality-tools clang-format,clang-tidy \
--non-interactive
--name
: Project name--description
: Project description--project-type
:executable
orlibrary
--build-system
:cmake
ormake
--cpp-standard
:11
,14
,17
,20
, or23
--package-manager
:none
,conan
, orvcpkg
--test-framework
:none
,doctest
,gtest
,catch2
, orboosttest
--license
:MIT
,Apache-2.0
,GPL-3.0
, orBSD-3-Clause
--quality-tools
: Comma-separated list ofclang-format
,clang-tidy
,cppcheck
--non-interactive
: Skip interactive prompts--path
: Output directory (default: current directory)--git
: Initialize git repository (default: true)
Generated project structure for an executable:
my-project/
βββ src/
β βββ main.cpp
βββ include/
βββ assets/
βββ tests/ # If testing is enabled
βββ build/
βββ CMakeLists.txt # Or Makefile
βββ .gitignore
βββ LICENSE
βββ README.md
For a library:
my-project/
βββ src/
β βββ lib.cpp
βββ include/
β βββ my-project.hpp
βββ examples/
βββ tests/ # If testing is enabled
βββ build/
βββ CMakeLists.txt # Or Makefile
βββ .gitignore
βββ LICENSE
βββ README.md
This project is licensed under the MIT License - see the LICENSE file for details.
Nauris Linde naurislinde@gmail.com
Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
- Rust for the programming language
- Handlebars for templating
- Conan for package management
- Vcpkg for package management
- CMake for build system
- Make for build system
- doctest for testing
- Catch2 for testing
- Boost.Test for testing
- Google Test for testing
- Clang Tidy for code quality
- Cppcheck for code quality
- Clang Format for code formatting