mirror of https://github.com/nymea/nymea.git
14 lines
308 B
C++
14 lines
308 B
C++
#include <QtGui/QGuiApplication>
|
|
#include "qtquick2applicationviewer.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QtQuick2ApplicationViewer viewer;
|
|
viewer.setMainQmlFile(QStringLiteral("qml/hive_client/main.qml"));
|
|
viewer.showExpanded();
|
|
|
|
return app.exec();
|
|
}
|