Re: QTDesigner + Libraries
Do you edit your .pro file while Designer is running?
Try adding that library through "Project Settings" (right-click on the .pro file in "Project Overview").
Re: QTDesigner + Libraries
hi jacek,
Yes while running the designer.
It looks to work now by adding the library in the"project properties" ;)
thank you!
Re: QTDesigner + Libraries
Quote:
Originally Posted by raphaelf
Yes while running the designer.
Next time close it before altering the .pro file by hand.
Re: QTDesigner + Libraries
Hi jacek,
Yes i will do that ;)
Jacek, i am using 2 libs "qwt.lib and "fmodex.lib".
So i have to include both libs in the Projet Settings. QT Designer is not able to include the both..he takes allways just the first lib from .pro file:
.pro:
Here for example i can choose in the designer just fmodex.lib. And the second line will deleted :confused:
Code:
win32:LIBS += fmodex.lib
win32:LIBS += qwt.lib
How could i use both, or how to add both libs in the Project Settings?Its possible?
Re: QTDesigner + Libraries
Did you try
Code:
win32:LIBS += fmodex.lib qwt.lib
Your way should work though
Re: QTDesigner + Libraries
hi yop ;)
It works like you sad...
thank you and have a nice day ;)