1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00
GPXSee/src/main.cpp

13 lines
271 B
C++
Raw Normal View History

2017-11-26 18:54:03 +01:00
#include "GUI/app.h"
2015-10-05 01:43:48 +02:00
int main(int argc, char *argv[])
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
2018-08-18 21:06:36 +02:00
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif // QT6
2018-08-18 21:06:36 +02:00
App app(argc, argv);
return app.run();
2015-10-05 01:43:48 +02:00
}