Hi everyone,

I get blocked in stupid compile process of Qt. My project in what I work on doesn't work anymore so I tried test my build step with a simple project in qtcreator the one which generate the mainwindow with .ui. either the qmake generates a makefile which doesnt include the rule to invoke uic or in my main project suddenly I got the collect2.exe stop working for any clear reason.
Here my .pro from the simpliest Qt programme
__________________________________________________ ________
#-------------------------------------------------
#
# Project created by QtCreator 2016-06-29T09:14:51
#
#-------------------------------------------------

QT += core gui

greaterThan(QT_MAJOR_VERSION, 5): QT += widgets

TARGET = test
TEMPLATE = app

FORMS += mainwindow.ui
SOURCES += main.cpp\
mainwindow.cpp

HEADERS += mainwindow.h
__________________________________________________ ________
No big deal ! behind the scene of qtcreator it launches
DELETED4.jpgqmake.exe test.pro -r -spec win32-g++
and mingw32-make
inclosed you see my qtcreator conf and directory project after compiling. Indeed makefile.debug get no hint of uic.

Thanks in advance for your precious experience