qt: Make QT default off to prepare merging to upstream

This commit is contained in:
ts-korhonen
2022-01-08 15:36:52 +02:00
parent b5adb66a00
commit 021ec8e50d
2 changed files with 2 additions and 2 deletions

View File

@@ -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
#

View File

@@ -240,7 +240,7 @@ if (APPLE)
endif()
if (QT)
add_subdirectory(qt)
add_subdirectory(qt)
elseif(WIN32)
add_subdirectory(win)
else()