Hello,

I'm on Windows using the new Beta Qt SDK (Qt 4.7.2), with MinGW.

I tried creating a new GUI Application on creator (with a .ui file).

I modified a little bit the .pro file, putting :

Qt Code:
  1. CONFIG -= warn_on warn_off release debug debug_and_release
  2. CONFIG *= qt warn_on release
To copy to clipboard, switch view to plain text mode 

when compiling, I get :

process_begin: CreateProcess(NULL, c:\Qt\Desktop\Qt\4.7.2\mingw\binuic.exe ..\qmaketest\mainwindow.ui -o ui_mainwindow.h, ...) failed.

As you can see, make is trying to invoke the incorrect uic binary (binuic.exe instead of bin\uic.exe). I fixed this issue by removing debug_and_release from the first line.

However, I can't figure out why qmake is generating an incorrect makefile (the DIR_SEPARAOR seems to be empty). I also tried with Qt 4.7.0, same issue.

It is working fine on Linux & Mac. QMake Windows bug I guess ?