diff --git a/src/main.cpp b/src/main.cpp index 32bfdba..dab2fe4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,7 @@ #include #include #include +#include #include "CartController.h" @@ -9,6 +10,8 @@ int main(int argc, char *argv[]) qmlRegisterType("EmsQart", 1, 0, "CartController"); QApplication app(argc, argv); + app.setWindowIcon(QIcon(QStringLiteral("qrc:/images/ems-qart.icon"))); + QQmlApplicationEngine engine(QUrl(QStringLiteral("qrc:/qml/MainView.qml"))); return app.exec();