Can someone give me some instructions on how to install TinyXML (or TinyXML++) to debian so I can use it from within my C++ app.
I've never installed a library before so I have no idea what to do.
Thanks
Can someone give me some instructions on how to install TinyXML (or TinyXML++) to debian so I can use it from within my C++ app.
I've never installed a library before so I have no idea what to do.
Thanks
on the command line:
sudo apt-get install libtinyxml-dev
should be all you need
alternatively you could use a gui packet manager (if your distro has one) and search for tinyxml
You don't need to install it as a library, you can include the TinyXML code into your own project. That might prove easier to you.
In the TinyXML zip file you will find a Makefile and a file xmltest.cpp. Unzip the directory, go into it with a shell and type "make".
Then just pretend xmltest.cpp is your program and go from there, modify it to suite your needs. Good luck!
This question is not so much about tinyxml as it is with toolchains and command line development on Unix like systems in general.