This is a template to start a new C++ project with dependency management
built into it. Hence, it is opinionated about how dependency management
of a C++ project can be done. This template uses conan
to manage
C++’s dependency.
Just clone/download the project or click the Use this template button if you’re using Github as your git hosting site and start coding.
Users are encouraged to learn a bit about how conan works
to better understand the conanfile.txt
and how to add more dependencies.
If you're using just
, you can run
just config
to configure the project and
just build
to build the project
If you want to use raw CMake, you should use the preset. To configure the project, you can run
cmake --preset debug
and to build the project, you can run
cmake --build --preset debug