MeeGo HelloWorld build trouble
Hi
I have problem to build simple application for MeeGo. I have several issues.
#include
#include
#include
int main(int argc, char *argv[])
{
MApplication a(argc, argv);
MApplicationWindow w;
MApplicationPage p;
w.show();
p.appear();
return a.exec();
}
1. Issue #include qt creator (not compiler) says "no such file or directory" so the auto complete isn't works.
2. When I build a debugging helper, I had to rename the file ld-2.11.90.so to ld-linux.so.2 to build successfully.
3. When I build my project, I had to rename the file librt-2.11.90.so to librt.so.1, libpcre.so.0.0.1 to libpcre.so.0, and libdbus-1.so.3.4.0 to libdbus-1.so.3 because that libraries were not found by compiler.
After that I have successful build.
Regards


