Initial import

This commit is contained in:
2019-11-04 10:21:20 -05:00
commit 11abef8497
5 changed files with 39 additions and 0 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <QGuiApplication>
#include <QQmlApplicationEngine>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine(QUrl(QStringLiteral("qrc:/qml/main.qml")));
return app.exec();
}