Add two sample apps just to have some Qt based applications that can be launched.
[staging/HomeScreen.git] / SampleMediaApp / main.cpp
1 #include <QtGui/QGuiApplication>
2 #include "qtquick2applicationviewer.h"
3
4 int main(int argc, char *argv[])
5 {
6     QGuiApplication app(argc, argv);
7
8     QtQuick2ApplicationViewer viewer;
9     viewer.setMainQmlFile(QStringLiteral("qml/SampleMediaApp/main.qml"));
10     viewer.setFlags(Qt::FramelessWindowHint);
11     viewer.showExpanded();
12
13     return app.exec();
14 }