OESF Portables Forum

Everything Else => Zaurus - Everything Development => Distros, Development, and Model Specific Forums => Archived Forums => OpenZaurus/Opie/Qtopia => Topic started by: YoG on August 29, 2006, 01:07:54 pm

Title: Native Development
Post by: YoG on August 29, 2006, 01:07:54 pm
Hi,
I've seen hrw's message (https://www.oesf.org/forums/index.php?showtopic=19095&st=185#) that native development should work.
So I went and installed:
gcc
binutils
and libc6-dev.
and compiled helloWorld.c with out a problem (and it even runs!)
Code: [Select]
#include

int main(void)
{
     printf("Hello World!\n");
     return 0;
}


Now I wish to compile some apps for opie (with gui and everything...) the question is:
is it possible?
and if it is:
how?

Thanx,
YoG.
Title: Native Development
Post by: Hrw on August 29, 2006, 04:21:43 pm
ipkg install qmake libqpe-dev libqte-dev libopie*-dev (maybe some more packages)

then unpack and run qmake?

oops.. looks like we lack qmake..
Title: Native Development
Post by: YoG on August 30, 2006, 02:43:53 am
I think moc and uic are also required for compiling qt gui.

YoG.