C++ version of the netorcai client library.
The library uses the Meson build system (and therefore uses Ninja).
# Create build directory.
meson build # --prefix=/desired/installation/prefix
# Build the library (and the unit test executables).
cd build
ninja
# Run the unit tests
ninja test
# Install the library
ninja install
Feel free to look at hello world examples to build your own clients.