mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
14 lines
284 B
C++
14 lines
284 B
C++
#include "common/config.h"
|
|
#include "GUI/app.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#ifdef ENABLE_HIDPI
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
|
#endif // ENABLE_HIDPI
|
|
|
|
App app(argc, argv);
|
|
return app.run();
|
|
}
|