Installing Debian TinyXML

Can someone give me some instructions on how to install TinyXML (or TinyXML ++) in debian so that I can use it from my C ++ application.

I have never installed a library before, so I have no idea what to do.

thank

+3
source share
2 answers

on the command line:

sudo apt-get install libtinyxml-dev

should be all you need

alternatively you can use the gui package manager (if your distribution has one) and look for tinyxml

+4
source

You do not need to install it as a library, you can include TinyXML code in your own project. This may be easier for you.

zip TinyXML Makefile xmltest.cpp. , "make".

, xmltest.cpp - , , , . !

tinyxml, Unix .

0

Source: https://habr.com/ru/post/1787422/


All Articles