Hi, I'm creating a .dll file so in my .pro file I have:
Code:
QT -= gui
Which is what I read is causing my error:
"Error: QImage: No such file or directory"
Why can't include QImage in .dlls?
Printable View
Hi, I'm creating a .dll file so in my .pro file I have:
Code:
QT -= gui
Which is what I read is causing my error:
"Error: QImage: No such file or directory"
Why can't include QImage in .dlls?
Because QImage is part of QtGui you just disabled.
I see thanks.