wiki:webos

Version 1 (modified by Martin Kolman, 12 years ago) (diff)

--

Porting modRana to WebOS

Prerequisites

What needs to be ported first for modRana to run.

Python

Already ported by THP.

see: http://thp.io/2011/webos/

Qt + QML

Ported by DanRog.

see: http://thp.io/2011/webos/

PySide

Needs to be ported.

Qt Components

Needs to be ported, shouldn't be difficult once the rest is done.

Progress

Python - DONE

Just using the binaries from THP will do.

Qt - in progress

Following the Qt compilation guide on WebOS Internals:

http://www.webos-internals.org/wiki/HowtoQt

Step 1 - DONE & WORKING

Compiled a C++ hello world:

#include <iostream>
#include <cstdlib>
 
int main()
{
     std::cout << "Hello world!\n";
 
     return EXIT_SUCCESS;
}

The compiled file runs fine on the Touchpad.

Step 2