Skip to content

FaZeRs/cppup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7eab430 Β· Dec 29, 2024

History

12 Commits
Dec 21, 2024
Dec 21, 2024
Dec 1, 2024
Dec 16, 2024
Dec 16, 2024
Dec 29, 2024
Dec 29, 2024

Repository files navigation

cppup

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.

Features

  • 🎯 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

Prerequisites

  • 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

Building

cargo build

Usage

Interactive Mode

Simply run:

cppup

Follow the interactive prompts to configure your project.

Non-Interactive Mode

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

Available Options

  • --name: Project name
  • --description: Project description
  • --project-type: executable or library
  • --build-system: cmake or make
  • --cpp-standard: 11, 14, 17, 20, or 23
  • --package-manager: none, conan, or vcpkg
  • --test-framework: none, doctest, gtest, catch2, or boosttest
  • --license: MIT, Apache-2.0, GPL-3.0, or BSD-3-Clause
  • --quality-tools: Comma-separated list of clang-format, clang-tidy, cppcheck
  • --non-interactive: Skip interactive prompts
  • --path: Output directory (default: current directory)
  • --git: Initialize git repository (default: true)

Project Structure

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

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Nauris Linde naurislinde@gmail.com

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

Acknowledgments

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published