git clone https://github.com/martin-olivier/CppTemplate
python3 setup.py
Using Unix Makefile:
# to build the program
make
./binary
# to build the tests
make tests
./unit_tests
Using 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