Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
23 lines (17 sloc) 540 Bytes
#include <QGuiApplication>
#include <QtQuick/QQuickView>
#include <QtQml/QtQml>
#include <QDecoder.h>
int main(int argc, char *argv[])
{
QGuiApplication a(argc, argv);
QQuickView view;
QDecoder decoder;
view.engine()->rootContext()->setContextProperty("qDecoder", &decoder);
view.engine()->addImportPath("..");
view.setResizeMode(QQuickView::SizeRootObjectToView);
//view.setSource(QUrl::fromLocalFile("./Main.qml"));
view.setSource(QUrl("qrc:/pages/Main.qml"));
view.show();
return a.exec();
}