aligusnet / cpp-starter-template

This is a C++ starter project template for getting up and running with C++ quickly.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Starter Template Project

This is a C++ starter project template for getting up and running with C++ quickly.

Using conan for dependencies.

Install conan

> python -m pip install conan

Configure project

> conan profile detect  # in case if no conan profiles created
> conan install . --output-folder=build --build=missing
> cd build
> cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
> cmake --build .
> cd ..
> code .

Use Conan's CMake presets in VS Code.

About

This is a C++ starter project template for getting up and running with C++ quickly.


Languages

Language:C++ 81.9%Language:CMake 18.1%