Hi,
currently I'm facing the same problem. The unresolved external symbol message appears even while trying to compile this program, that doing nothing:
#include <QtGui/QApplication>
int main(int argc, char *argv[])
{
return a.exec();
}
#include <QtGui/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
return a.exec();
}
To copy to clipboard, switch view to plain text mode
I must say, that the problem appears only in the static build. Before this, I used the standard version of Qt WinCE and there was no problem with linking. Now when I try to compile my app, about 8 unresolved externals are displayed (see the log). Unfortunately non-static version is unacceptable for me because of huge size of DLLs.
Qt was configured with these params:
configure -static -release -platform win32-msvc2008 -xplatform wincewm65professional-msvc2008 -nomake examples -nomake demos -no-qt3support -no-phonon -no-phonon-backend -opensource
Bookmarks