change qt platform when headless on linux

This commit is contained in:
scatterflower 2020-08-27 20:44:06 -05:00
parent ac4dac9ba5
commit 71d8ad725f

View File

@ -36,6 +36,15 @@ int main(int argc, char* argv[])
freopen("CONOUT$", "w", stdout); freopen("CONOUT$", "w", stdout);
freopen("CONOUT$", "w", stderr); freopen("CONOUT$", "w", stderr);
} }
#endif
#ifdef __linux__
// We have to do this before the QApplication is instantiated
// As a result, we can't use QCommandLineParser
for(int i; i < argc; i++) {
if(strcmp("-l", argv[i]) == 0 || strcmp("--headless", argv[i]) == 0){
setenv("QT_QPA_PLATFORM", "minimal");
}
}
#endif #endif
QApplication app(argc, argv); QApplication app(argc, argv);
QApplication::setApplicationName("akashi"); QApplication::setApplicationName("akashi");