This repository is implemented in C++, built with CMake.
# configure the project
cmake -B build
# build the project
cmake --build build
# test the project
cd build
ctest --output-on-failure
# run the project
./bin/main.exe
# package the project
cpack -G ZIP
# or
cpack -G NSISThe source code is dual licensed under Public Domain and MIT -- choose whichever you prefer.