How to run OpenMoko Apps on PC

From Openmoko

(Difference between revisions)
Jump to: navigation, search
 
Line 1: Line 1:
 
 
===Install dependencies===
 
===Install dependencies===
  
Line 10: Line 9:
  
 
===Build everything in one run using Qmake===
 
===Build everything in one run using Qmake===
 +
{{NOTE|qmake is Mickey's preferred build tool, you can use autotools as well...}}
  
 
   cd <svn-checkout>/OM-2007
 
   cd <svn-checkout>/OM-2007
 +
  . ./makevars.sh
 
   qmake
 
   qmake
 
   make
 
   make
  
 +
Now the applications should be found in ./bin.
  
===Build everything using autotools===
+
===
 
+
TBD
+

Revision as of 18:56, 24 November 2006

Install dependencies

  • use aptitude, apt-get, urpmi, or whatever your distro supports
  • you will probably need
    • gtk-dev
    • pango-dev
    • atk-dev
    • qmake from Qt4

Build everything in one run using Qmake

Template:NOTE

 cd <svn-checkout>/OM-2007
 . ./makevars.sh
 qmake
 make

Now the applications should be found in ./bin.

=

Personal tools

Install dependencies

  • use aptitude, apt-get, urpmi, or whatever your distro supports
  • you will probably need
    • gtk-dev
    • pango-dev
    • atk-dev
    • qmake from Qt4

Build everything in one run using Qmake

 cd <svn-checkout>/OM-2007
 qmake
 make


Build everything using autotools

TBD