mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
16 lines
282 B
C++
16 lines
282 B
C++
#include "GUI/app.h"
|
|
#include "config.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);
|
|
app.run();
|
|
|
|
return 0;
|
|
}
|