Switch on Qt by default

This commit is contained in:
David Hrdlička
2022-03-06 19:08:27 +01:00
parent 47211f43e9
commit 396f491af2

View File

@@ -122,11 +122,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)
if(NOT WIN32)
option(QT "QT GUI" ON)
else()
option(QT "QT GUI" OFF)
endif()
# Development branch features
#
@@ -151,7 +147,7 @@ cmake_dependent_option(VNC "VNC renderer"
cmake_dependent_option(XL24 "ATI VGA Wonder XL24 (ATI-28800-6)" ON "DEV_BRANCH" OFF)
# Ditto but for Qt
if (QT)
if(QT)
option(USE_QT6 "Use Qt6 instead of Qt5" OFF)
endif()