Qt4: Difference between revisions

From Bashlinux
Jump to navigationJump to search
Content deleted Content added
Manpaz (talk | contribs)
No edit summary
 
Manpaz (talk | contribs)
No edit summary
Line 20: Line 20:
<pre><nowiki>
<pre><nowiki>
qmake hello.pro
qmake prj_name.pro
</nowiki></pre>
</nowiki></pre>



Revision as of 07:23, 2 April 2010

QT4

Create a new project

  1. Make a directory for the project and put the source code in it. The folder and the project have the same name.
 mkdir prj_name
 
  1. Put the source code inside that directory.
  2. Go into that directory and make the project file
 cd prj_name/
 qmake -project
 
  1. This will produce a .pro (project) file based on the name of the current directory, which would be prj_name.pro
  2. Create a (platform-specific) Makefile based on the project file.
 qmake prj_name.pro
 
  1. Run make to compile the project:
 make