expatpp C++ XML Parser Library wrapper
expatpp is a free wrapper to the also free expat C XML Parser library. Unfortunately, it doesn’t exist… or so I thought.
The sourceforge site doesn’t have any files to download, but after some fishing, I found a download which includes expatpp and a compatible version of expat here.
After removing the txt from the Makefile in expatpp/expat and running “make all” from terminal, I had a static version of expatpp, ready to go! Sort of. The makefile builds expat, the underlying library. So far, I’m simply including the single source file in my projects.
You just have to move the expat lib to the directory of your choice (there is no install target in the Makefile) and also expatpp.h & xmlparse.h (so far) where your projects will be able to find them.