git clone https://github.com/martin-olivier/CppTemplatepython3 setup.pyUsing Unix Makefile:
# to build the program
make
./binary
# to build the tests
make tests
./unit_testsUsing CMake:
# to build the program
cmake . -B build
cmake --build build
./binary
# to build the tests
cmake . -B build_tests -DUNIT_TESTS=ON
cmake --build build_tests
./unit_tests