From 021ec8e50d72e339e6d35c48c4265afa43d0755c Mon Sep 17 00:00:00 2001 From: ts-korhonen Date: Sat, 8 Jan 2022 15:36:52 +0200 Subject: [PATCH] qt: Make QT default off to prepare merging to upstream --- CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f003bcb60..424e08ec3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,7 +110,7 @@ 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) -option(QT "QT GUI" ON) +option(QT "QT GUI" OFF) # Development branch features # diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 765a714e6..6bc00b432 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -240,7 +240,7 @@ if (APPLE) endif() if (QT) - add_subdirectory(qt) + add_subdirectory(qt) elseif(WIN32) add_subdirectory(win) else()