Adding libs (QT += ...) didn't work
-
Hello.
I have a problem with adding new libs to project.
I try add "xml" to QT += core, but that didn't work. Nothing changes.My workspace:
Qt 5.3 MinGW 32bit (auto-detected)
MinGW 4.8.2 32bit (auto-detected)How can i add new libraries?
I try various options, but it failed to.
Please help
Jareq000Screen:
-
hii
Add QT += xml
http://qt-project.org/doc/qt-5/qtxml-index.html -
That's my .pro file:
@TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qtSOURCES += main.cpp
QT += core
QT += xmlINCLUDEPATH += C:/Qt/Qt5.3.1/5.3/mingw482_32/include
@and that didn't work.
I think, that QT can't find the libraries. I tried to add them, but it didn't work. Where can I check if everything is ok?
-
Did you run qmake after you modified the .pro file? If not, run qmake (you can find it in Build menu in Creator) and after that the linker should find the xml module libraries.
And also the include should work without the module name:
@
#include <QFile>
#include <QDomDocument>
//...
@