CppTemplate
π
Summary
β οΈ
Requirement
π»
Usage
π
Clone repository
git clone https://github.com/martin-olivier/CppTemplate
π§
Setup repository
python3 setup.py
π¨
Build
With Makefile:
# to build the program
make
./binary
# to build the tests
make tests
./unit_tests
With 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