Let me clear my situation for you. First I tried to test my app under windows 7 on qt simulator. Here the debug works fine but as you told me it uses the desktop executables, so I wouldn't be testing it correctly under windows since when I compile for the Maemo the code is a bit different as my app has codes like this:
#if defined(Q_OS_WIN32)
fileName += ".dll";
#endif
#if defined(Q_OS_LINUX)
fileName = "lib" + fileName + ".so";
#endif
#if defined(Q_OS_MAC)
fileName += ".dylib";
So I tried to use qt simulator under linux to make sure that when compiled for Maemo all the testing would be more accurate. But under windows qt simulator returns the pluginsDir = QDir (qApp->applicationDirPath()); to the correct windows folder... but under linux returns <unavailable synchronous data>...
I think I'm out of ideas how to test my app... Under linux x86 the code wouldn't compile correctly... under linux x86_64 the same code compiles fine but qt simulator doesn't work. I tried installing MADDE n900 sdk and it said that it's not compatible with x86_64...
What can I do? try to install MADDE for windows and test it there?
I'm afraid that after spending lots of time trying to get this to work I won't be able to debug properly under windows 7 with MADDE with all the luck I'm having...
please help me again lol
Bookmarks