Contents
Installed Programs:
None
Installed Libraries:
libtomlplusplus
Installed Directories:
/usr/include/toml++ and /usr/lib/cmake/tomlplusplus
The toml++ package is a TOML configuration parser for C++.
Install toml++ by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr --buildtype=release .. && ninja
Now, as the root user:
ninja install
--buildtype=release: Specify a buildtype
suitable for stable releases of the package, as the default may
produce unoptimized binaries.
-D generate_cmake_config=false: This option
removes the dependency on CMake, but as a result, it doesn't generate the
CMake find_package files which some build systems expect.