TAGS :Viewed: 14 - Published at: a few seconds ago

[ Qt how to read an XML? ]

SOLUTION: I had to add Qt += xml to my .pro file

here's my problem:

myClass.h:

#include <QtXml/QDomDocument>
#include <QtXml/qdom.h>
[...]

myClass.cpp

[...]
QDomDocument doc("test");
[...]

on build I get the error:

collect2:ld returned 1 exit status

What's wrong with this ?

Thanks in advance.

P.S.: Qt-Creator 2.0.1, Windows 7 x64 Pro.

Answer 1


I had to add Qt += xml to my .pro file.

Answer 2


Based on your error message I assume you aren't linking to QtXML. I haven't used Qt-Creator, but I believe there is a simple way to activate/deactivate components of Qt for your program.