PDA

View Full Version : fatal error- missing -'QtUiToolsd.lib



razovy
16th June 2006, 20:51
I'm trying to use QT 4.1.2 ( from qt-win-opensource-4.1.2-mingw.exe)
for qtwengophone ( script scons prepare-for-mingw=yes qtwengophone was used), but LINK is showing the following error

"fatal error LNK1181: cannot open input file 'QtUiToolsd.lib".

Indeed, Qt folder "lib" (after compilation) contains 79 files inluding "Qt3Support4.dll' till "QtDesignerd4.dll" but NO .LIB files and nothing related to QtUiToolsd.

My question is - what's wrong< and how could I create this 'QtUiToolsd.lib" file?


P.S. All Enviramental variables are set

jacek
19th June 2006, 22:58
My question is - what's wrong< and how could I create this 'QtUiToolsd.lib" file?
If you use MinGW, then you won't get a something.lib file, but rather libsomething.a.

Do you have libQtUiToolsd.a? If yes, then make sure you compile that application using MinGW.

e8johan
20th June 2006, 09:55
Could it be that the QtUiToolsd.lib d is the problem. Have you build debug libraries. Otherwise you will have to alter your project file to build a release version and use QtUiTools.lib instead.