Interface with wot++ in C++!
This project comes with a handy set of scripts that automatically clone the official wot++ repository, and apply some modifications to it such that it becomes suitable to be built as a library.
You will need to install the parse python library.
pip install parseThe following set of scripts should work automatically. In the case they didn't, please file an issue in this repository.
./recreate.sh
./fix_includes.shAssuming all the sources have been generated correctly you can now build this project normally as a meson/ninja project.
meson build --buildtype=releaseNOTE: If you want to set a custom compiler, remember to set both the CXX and CC variables.
CXX=clang++ CXX_LD=lld CC=clang CC_LD=lld meson build --buildtype=releaseBuild and install:
ninja -C buildninja -C build installAnd you should be good to go.