Lightweight C++ XML parsing library
xmlwrapp is a modern style C++ library for working with XML data, built atop the venerable libxml2 C library.
Additional resources, bug reports, latest sources etc. can be found on the project page at https://github.com/vslavik/xmlwrapp
Packages tarballs can be downloaded from https://github.com/vslavik/xmlwrapp/releases
If you need help or want to discuss xmlwrapp, feel free to join the discussion group hosted at http://groups.google.com/group/xmlwrapp or email directly to xmlwrapp@googlegroups.com.
In order to build xmlwrapp, you need libxml2 version 2.4.28 or newer. When building with XSLT support, libxslt 1.1.6 or newer is required. Both libraries are available from http://xmlsoft.org.
On Unix, the usual Autotools-based build system is used. Building xmlwrapp is usually as simple as running the following three commands:
./configure make make install
See the output of ./configure --help
for additional settings and options.
At this time, only building with Visual C++ compiler is supported. The required project files are located in platform/Win32 directory. You will need libxml and libxslt libraries built for Windows, e.g. the binaries from http://www.zlatkovic.com/libxml.en.html.
On Unix, you should use pkg-config to get compiler flags for xmlwrapp or xsltwrapp libraries:
c++ -c $(pkg-config --cflags xmlwrapp) ...
c++ -o ... $(pkg-config --libs xmlwrapp)
On Windows, you need to link against xmlwrapp libraries and add the include/ directory to compiler's headers search path.