From 71d8ad725f1eabf28bdf8c99f7ff6e81cc4396ce Mon Sep 17 00:00:00 2001 From: scatterflower Date: Thu, 27 Aug 2020 20:44:06 -0500 Subject: [PATCH] change qt platform when headless on linux --- src/main.cpp | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 043de84..a72c00f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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");