A small collection of utility libraries for my personal projects.
Library | Description |
---|---|
cli | A simple, header-only CLI parser for C++. Depends only on C standard library and C++ STL. |
See each library folder for its corresponding license.
The provided CMakeLists.txt
file will build all the tests for the libraries.
You can run the unit tests as follows:
mkdir build && cd build
cmake ..
make
ctest # or run each individual test executable in the build/tests folder