I am using QT Creater 1.0.0. and QT 4.5.0 LGPL license.
I want to develop an application in QT that will run on a windows mobile 6.0.
I have created a simple
Are you sure you're using qmake -tp vc? You mentioned it twice, but your output above shows you're using qmake -t vc. (note the -t instead of -tp)
You either need to use:
qmake -tp vc
or
qmake -t vcapp
It could also be a bad QMAKESPEC environment variable.
Try this:
set QMAKESPEC=win32-msvc2008
qmake -tp vc