#include <QGuiApplication>
#include <QQmlApplicationEngine>
#ifdef QT_STATIC
#include <QtPlugin>
Q_IMPORT_PLUGIN(CommuniPlugin)
#endif
int main(int argc, char* argv[])
{
QGuiApplication app(argc, argv);
app.setOrganizationName(QStringLiteral("Commmuni"));
app.setApplicationName(QStringLiteral("QtQuick Example"));
QQmlApplicationEngine engine(QUrl(QStringLiteral("qrc:/main.qml")));
return app.exec();
}