PDA

View Full Version : Converting QT 4 to VC++



vvbkumar
22nd June 2006, 08:05
hi

Recently i have upgraded to QT 4 from QT 3.

in QT 3 , we can convert to VC++ using "qmake -tp vc abc.pro",

but the same command is not working in QT 4 ,
can u pl help me out ??

wysota
22nd June 2006, 08:11
Qt4/Free does not support MSVC. If you have a commercial licence, you should get a VS integration component.

rajesh
22nd June 2006, 11:37
qmake -tp vc abc.pro cmd working for me in Qt4.1.3
what are file available in your folder?
what error you getting?

ball
22nd June 2006, 13:54
I simply put all the *.cpp and *.h files into a folder called, say [QtDemo]. Then under this folder I open a command prompt, typing [qmake -project] and it will generate a QtDemo.pro project file. And then I can generate a QtDemo.vcproj by typing [qmake -tp vc] under the same folder. That 's it.