Thanks to visit codestin.com
Credit goes to github.com

Skip to content

bigcat26/cxx-scaffold

Repository files navigation

C++ Quick Start Project

A skeleton project aimed at starting C++ projects as quickly as possible.

Requirements

  • CMake
  • Conan
  • Ninja

Usage

  1. Clone the repository:

    git clone https://github.com/bigcat26/cxx-starter.git
    cd cxx-starter
  2. Open in VSCode:

    # If the editor's command-line tool (e.g., 'code', 'cursor') is in your PATH
    code .
  3. Set up the project:

    Run the following commands in the VSCode integrated terminal:

    # Create a build directory and navigate into it
    mkdir build && cd build
    
    # Install dependencies using Conan
    conan install .. --output-folder=. --build=missing
  4. Configure and Build:

    Use the VSCode Command Palette (Cmd + Shift + P on macOS, Ctrl + Shift + P on Windows/Linux):

    • Run CMake: Configure
    • Run CMake: Build
  5. Debug:

    • Press F5 to start a debugging session.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published