From 0b3a6d8e8428082c9e76639275a39752f2538993 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Tue, 8 Feb 2022 14:22:48 +0600 Subject: [PATCH] Qt is now on by default for non-Windows --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e1f6fc47e..9170741cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,7 +122,11 @@ option(CPPTHREADS "C++11 threads" option(NEW_DYNAREC "Use the PCem v15 (\"new\") dynamic recompiler" OFF) option(MINITRACE "Enable Chrome tracing using the modified minitrace library" OFF) option(DEV_BRANCH "Development branch" OFF) +if(NOT WIN32) +option(QT "QT GUI" ON) +else() option(QT "QT GUI" OFF) +endif() # Development branch features #