Hi
I have a qml file which imports QtQuick 1.0. It was ok in Qt 4.8 but after porting to qt5.7 it does not work.
Remember that I don't want to use QtQuick 2. Is there any solution for my problem?
my code is:
QQuickView *view = new QQuickView;
view->setSource(QUrl::fromLocalFile("D:/test/myQml.qml"));
view->show();