PDA

View Full Version : qt + nmake problem witg release



nanortemis
23rd June 2009, 20:11
Hello!

I have huge problem with release build.

I compiled qt 4.5.1 sources using nmake:

configure -platform win32-msvc2008
nmake

After compilation debug build works great, but if I choose relase

nmake clean
qmake -config release
nmake

I cannot run compiled application - I need mingwm10.dll file,
but it's strange because I don't use even I don't have MinGW compiler?
What's wrong???

Thx for help

Best regards
Nanortemis

lixo1
25th June 2009, 16:33
Are you sure, that you never install Qt with SDK? The MinGW installer doesn't remove the Mingw files and binaries after the uninstallation.

Are you sure that you not link your application to libraries that compiled with Mingw?

nanortemis
25th June 2009, 18:33
Yes, I had Qt SKD build with MinGW but I removed it (whole dir and paths (Qt and MinGW),
Then I installed MS SDK and downloaded Qt src -> compiled Qt with nmake.
Debug works great but release needs mingwm10.dll even if I compile totally new project.
Really strange...


Thx for answer.