fort/src/ui/main.cpp

20 lines
460 B
C++
Raw Normal View History

2017-08-23 13:52:22 +00:00
#include <QGuiApplication>
2017-09-01 13:13:12 +00:00
2017-09-02 13:07:40 +00:00
#include "../common/version.h"
2017-09-01 15:13:17 +00:00
#include "fortmanager.h"
2017-08-23 13:52:22 +00:00
int main(int argc, char *argv[])
{
2017-09-01 13:13:12 +00:00
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
2017-09-02 13:07:40 +00:00
2017-08-23 13:52:22 +00:00
QGuiApplication app(argc, argv);
2017-09-02 13:07:40 +00:00
app.setApplicationName(APP_NAME);
app.setApplicationVersion(APP_VERSION_STR);
app.setApplicationDisplayName(APP_NAME " v" APP_VERSION_STR);
2017-08-23 13:52:22 +00:00
2017-09-01 15:13:17 +00:00
FortManager fortManager;
fortManager.showWindow();
2017-09-01 13:13:12 +00:00
2017-08-23 13:52:22 +00:00
return app.exec();
}