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

@ -31,12 +31,21 @@
int main(int argc, char* argv[])
{
#ifdef _WIN32
#ifdef _WIN32
if (AttachConsole(ATTACH_PARENT_PROCESS)) {
freopen("CONOUT$", "w", stdout);
freopen("CONOUT$", "w", stderr);
}
#endif
#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
QApplication app(argc, argv);
QApplication::setApplicationName("akashi");
QApplication::setApplicationVersion("0.0.1");