Use Qt 6 by default on all platforms and update build instructions (#2187)

This commit is contained in:
Nadia Holmquist Pedersen
2024-11-05 17:03:07 +01:00
committed by GitHub
parent d8f1d106f0
commit 5959009ebd
6 changed files with 85 additions and 85 deletions

View File

@ -59,11 +59,7 @@ set(SOURCES_QT_SDL
NetplayDialog.cpp
)
if (APPLE)
option(USE_QT6 "Build using Qt 6 instead of 5" ON)
else()
option(USE_QT6 "Build using Qt 6 instead of 5" OFF)
endif()
option(USE_QT6 "Use Qt 6 instead of Qt 5" ON)
if (USE_QT6)
find_package(Qt6 COMPONENTS Core Gui Widgets Network Multimedia OpenGL OpenGLWidgets Svg REQUIRED)