Hello,
im building an application that requires
QT += x11extras for linux
I have put it in a unix condition :
unix
{
QT += x11extras
}
But when I run qmake on my windows host, it still try to add the module :
error: Unknown module(s) in QT: x11extras
Can I add the module for unix only?
Thanks