Data structures playground.
It's recommended to build the project in separate build
folder
mkdir -p build && cd build
Project uses CMake and it's very easy in use.
Just execute following code in the build
directory
cmake .. && cmake --build .
Project uses GTest framework.
To run tests you can execute unit tests from build
directory of built project
make test
You can use ctest
as well.
For verbose output with colors use
GTEST_COLOR=1 ctest -V
Go to your build
directory and execute watch
watch --color "cmake .. && cmake --build . && GTEST_COLOR=1 ctest -V | tail"