How to run OpenMoko Apps on PC

From Openmoko

(Difference between revisions)
Jump to: navigation, search
 
(26 intermediate revisions by 15 users not shown)
Line 1: Line 1:
===Install dependencies===
+
#redirect[[How to run Openmoko Apps on PC]]
 
+
* 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===
+
{{Note|qmake is Mickey's preferred build tool, you can use autotools as well...}}
+
 
+
  cd <svn-checkout>/OM-2007
+
  . ./makevars.sh
+
  qmake
+
  make
+
 
+
Now the applications should be found in ./bin.
+
 
+
===
+

Latest revision as of 07:18, 24 March 2008

  1. redirectHow to run Openmoko Apps on PC
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

NOTE: qmake is Mickey's preferred build tool, you can use autotools as well...


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

Now the applications should be found in ./bin.

=