Fmt Parser libraryΒΆ

A light-weight implementation of printf-like format string.

The main idea of the project is to send tasks to the analyzer and get a set of reports back.

Building

The project is based on CMake, so use a typical CMake approach:

mkdir -p build && cd build
cmake -GNinja ..

There is a simple tools/make.sh wrapper:

./tools/make.sh

To build for Windows on Linux, you may need MinGW. Then use:

./tools/make.sh --win32

To build with unit tests, add --test key.

Documentation

It is possible to generate Doxygen/Sphinx documentation using the following shell command on UNIX-based operating systems:

./tools/generate_doc.sh

The documentation will be located in build/html folder.