cpp-tutorial

Source code for "Project from scratch series"

Building the project (with cmake)

mkdir build && cd build && cmake .. && make

Building with test cases (with cmake)

Just use -DBUILD_TESTS=ON option for cmake.
mkdir build && cd build && cmake -DBUILD_TESTS=ON .. && make