we have created a statically linked library in Qt.On compiling the library we are getting errors...like QImage: no such file or directory and why start timer etc...
A:
Have you read the documentation?
Did you #include <QImage>
?
Is your compiler set up to find the Qt libraries?
Kristo
2010-04-05 13:52:12
A:
If you can compile some parts with errors but only get compile errors when you #include
Qt parts in the QtGui module, then you may need to look at your .pro file and make sure that you DON'T have QT -= gui
.
David Walthall
2010-04-05 16:27:30