This project contains a collection of standalone programming "bits". Most of these were done to learn something. Meson is used for C++ builds.
You will need Meson and Ninja to build. The basic steps are:
meson build && cd build && ninja
Some special targets are provided:
- test: Runs unit tests, don't forget to
meson configure -Db_sanitize=address
- benchmark: Runs benchmarks, don't forget to
meson configure -Dbuildtype=release
- format: Runs
clang-format
on the source