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
-
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!)
#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.
-
ipkg install qmake libqpe-dev libqte-dev libopie*-dev (maybe some more packages)
then unpack and run qmake?
oops.. looks like we lack qmake..
-
I think moc and uic are also required for compiling qt gui.
YoG.