@PROJECT_DESCRIPTION@
mkdir build && cd build
cmake .. # "-UBUILD_TESTS -DBUILD_TESTS=ON" to build tests, "-ULIBRARY_TYPE -DLIBRARY_TYPE=SHARED" for building shared library
make
Download the repository and place it into your project directory. In your project's CMakeLists.txt file, insert the following lines:
...
add_subdirectory(@PROJECT_NAME@)
...
target_link_libraries(${PROJECT_NAME} @PROJECT_NAME@)
...
cd build
./@PROJECT_NAME@
doxygen
Documentation will be generated in the directory named docs
.