Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.27 KB

README.md

File metadata and controls

48 lines (32 loc) · 1.27 KB

Data structures

Build Status Codacy Badge CodeDocs

Data structures playground.

Development

Build

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 .

Unit tests

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

Autobuild

Go to your build directory and execute watch

watch --color "cmake .. && cmake --build . && GTEST_COLOR=1 ctest -V | tail"