libconfig is a C/C++ library for processing configuration files.
apt-get install libconfig++-dev
To run the example program, first get example.cfg
and example1.cpp
from https://github.com/hyperrealm/libconfig/tree/master/examples/c%2B%2B.
g++ `pkg-config --cflags libconfig++` example1.cpp -o example1 `pkg-config --libs libconfig++`
or according to Creating a simple configuration file and parser in C++:
g++ example1.cpp -o example1 -lconfig++