Changes between Initial Version and Version 1 of webos


Ignore:
Timestamp:
Jun 30, 2012, 3:16:45 PM (12 years ago)
Author:
Martin Kolman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • webos

    v1 v1  
     1= Porting modRana to WebOS =
     2
     3== Prerequisites ==
     4What needs to be ported first for modRana to run.
     5
     6=== Python ===
     7Already ported by THP.
     8
     9see:
     10[http://thp.io/2011/webos/]
     11
     12=== Qt + QML ===
     13Ported by !DanRog.
     14
     15see:
     16[http://thp.io/2011/webos/]
     17
     18=== !PySide ===
     19Needs to be ported.
     20
     21=== Qt Components ===
     22Needs to be ported, shouldn't be difficult once the rest is done.
     23
     24== Progress ==
     25=== Python - DONE ===
     26Just using the binaries from THP will do.
     27
     28=== Qt - in progress ===
     29Following the Qt compilation guide on WebOS Internals:
     30
     31http://www.webos-internals.org/wiki/HowtoQt
     32
     33==== Step 1 - DONE & WORKING ====
     34Compiled a C++ hello world:
     35
     36
     37{{{
     38#include <iostream>
     39#include <cstdlib>
     40 
     41int main()
     42{
     43     std::cout << "Hello world!\n";
     44 
     45     return EXIT_SUCCESS;
     46}
     47}}}
     48
     49The compiled file runs fine on the Touchpad.
     50
     51==== Step 2 ====