Can be used in Visual Studio Code
You can use this template for most of your C++ projects without the need for changing the BUILD files.
You can copy this using this command:
git clone https://github.com/ourarash/cpp-template.git
You can run this using blaze
:
bazel run src/main:main
You can run unit tests using blaze
:
bazel test tests:tests
This repo uses Bazel
for building C++ files.
You can install Bazel using this link.
This repo was inspired by this post.