Hi,
New to the forum and quite new to QT, but not new in programming at all.
I’m writing a project for my studies, and one of the functions it should do is to send email. I’ve found out that many of developers use Qxt library, so I decided to try with it.
Am using Qt 5 on Win 8 with newest Qxt libraries. I generally followed what is here [qt-project.org]. I had one problem: html directory is not included in zip I’ve downloaded so it couldn’t be copied. All other steps went fine, i have additionally used mingw32-make install as found on that page [dev.libqxt.org].
I’ve created completely new project in QtCreator and i’ve added that lines to the project file at the end of .pro file:
win32:CONFIG(release, debug|release): LIBS += -LC:/Qt/libqxt/lib/ -lqxtcore
else:win32:CONFIG(debug, debug|release): LIBS += -LC:/Qt/libqxt/lib/ -lqxtcore
INCLUDEPATH += C:/Qt/libqxt/include/QxtCore
DEPENDPATH += C:/Qt/libqxt/include/QxtCore
CONFIG += qxt
QXT += core
Now, in my main.cpp i’ve added:
#include <QxtCore>
And finally, the errors i get:
*:-1: error: cannot find -lQxtCored
collect2.exe:-1: error: error: ld returned 1 exit status*
Does anyone has an idea of what can be wrong here? Or maybe someone knows more detailed manual for installing Qxt? I have already spent two days for trying this to work and decided to ask you for help.
Feel free to ask any additional questions if needed.
Thanks in advance,
Przemek
↧