PDA

View Full Version : Gmake on Linux



Qt Coder
10th April 2009, 13:35
Hi all,

I m using Qt 4.0.1

I have developed program in windows ,its running fine.

Now I want to compile and execute same program in Linux.

Could anyone tell me the steps to compile and execute Qt program in Linux...

vasanth
10th April 2009, 14:45
you can go through the wiki page here in qtcentre.org

http://wiki.qtcentre.org/index.php?title=Programming_in_Qt4_and_C%2B%2B

faldzip
10th April 2009, 14:54
Typically you need Qt to be installed on your system :] then, in you project directory, you need to type:


qmake

and then:

make
and that's it.