PDA

View Full Version : Making Fails in Windows XP



sashwinamrita
3rd December 2008, 06:31
in Win XP i installed Qt4.4.3 successfully and written hello world program

qmake -project
qmake

these two commands worked perfectly and makefiles have been generated successfully

but how to run the program in XP please help me out

mcosta
3rd December 2008, 08:03
in Win XP i installed Qt4.4.3 successfully and written hello world program

qmake -project
qmake

these two commands worked perfectly and makefiles have been generated successfully

but how to run the program in XP please help me out

From the command prompt run the .exe file.
Example:
> release/hello.exe

sashwinamrita
3rd December 2008, 08:21
but i didnt get .exe file in release folder its empty
its only in debug folder....

rexi
6th December 2008, 22:33
Are you actually building the release version? Or just the debug version? You can control this with the CONFIG variable in the project file. See http://doc.trolltech.com/4.4/qmake-project-files.html#general-configuration

Anyway, if there is an exe is in the debug folder, just run that. I don't see the problem. If the program was built you can run it like any other application.

sashwinamrita
8th December 2008, 14:41
thanks ya got it..