PDA

View Full Version : [SOLVED] Help with Qt in VIM



rawfool
February 25th, 2010, 05:54 AM
I am told to work on Qt applications and I'm working on Ubuntu Server from my Windows machine using PuTTY. I'm using VIM as editor and I'm also following the book 'Qt4 - The art of building Qt applications'. I'm trying to compile and run the main file(hello world program) but it's not creating .exe file for running the application.

qmake -project //This is creating a .pro file
qmake // This is creating a Makefile

But I don't know how to create a executable file to use

./'exe file'


Note: My PM asked me to work only on VIM and not to use any GUI based IDEs. Please help me solve this problem. Thanks.

Hellkeepa
February 25th, 2010, 06:16 AM
HELLo!

After you've run "qmake" all you need to run is "make". ;-)

Happy codin'!

rawfool
February 25th, 2010, 07:10 AM
Wow worked!! thank you..