fatal error- missing -'QtUiToolsd.lib
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
Re: fatal error- missing -'QtUiToolsd.lib
Quote:
Originally Posted by razovy
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.
Re: fatal error- missing -'QtUiToolsd.lib
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.