Qmake dont process uic
-
I have simple * pro file , that no matter what doesn't execute uic , if i run the uic ( uic * .ui -o ui_blah.h ) manually its working .
im on windows xp 32 bit using Qt 4.8 im running the qmake like this:
@qmake -tp vc@
here is the pro file
@# Directories
CONFIG += warn_off debug
TARGET = FB_tmp242_Test_newGUI
QT += network webkit xml
win32 {
DEFINES +=_CRT_SECURE_NO_WARNINGS
}
HEADERS+=MainWindow.h
datalistview.h
SOURCES +=main.cpp
MainWindow.cpp
FORMS+= mainwindow.ui#RESOURCES += resources.qrc
DESTDIR = build/target/
OBJECTS_DIR = build/obj/
MOC_DIR = build/moc/
RCC_DIR = build/rcc/Tell Qt Linguist that we use UTF-8 strings in our sources
CODECFORTR = UTF-8
CODECFORSRC = UTF-8@