this is my problem with this code
QQuickWidget *view = new QQuickWidget(this);
view->setSource(QUrl("qrc:///Video.qml"));
view->show();
when i compile with QT creator is ok.
But, when I run executable into second pc, copy all QT library, the app crash with error iglicd32.dll library.
I compile with qt5.3.0 in windows xp sp3, and second pc is windows xp sp3.
If i Remove the code
//QQuickWidget *view = new QQuickWidget(this);
//view->setSource(QUrl("qrc:///Video.qml"));
//view->show();
the app work.
HELP ME!!!! ;-(
↧