summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2025-11-24 18:37:23 +0100
committerGitHub <noreply@github.com>2025-11-24 18:37:23 +0100
commit1fa5accf039e7fefc78469d3dc672e01631429b8 (patch)
tree2ebd755f207614206e5bef86263e0dc431c903d9
parente195d3bb6e40e1b544a4496132ff388c95a5cb42 (diff)
parent6b3d24b481d18e7df94e3cf6edcfc9762d670cee (diff)
Merge pull request #14165 from BSDKaffee/qt-6.10-fix
Fix build for non-Linux with Qt 6.10+
-rw-r--r--Source/Core/DolphinQt/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt
index ba2e5522a4..e5e92ecdcf 100644
--- a/Source/Core/DolphinQt/CMakeLists.txt
+++ b/Source/Core/DolphinQt/CMakeLists.txt
@@ -16,7 +16,7 @@ set(CMAKE_AUTORCC ON)
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets Svg)
-if (LINUX AND Qt6_VERSION VERSION_GREATER_EQUAL 6.10.0)
+if (Qt6_VERSION VERSION_GREATER_EQUAL 6.10.0)
# GuiPrivate is needed to #include qplatformnativeinterface.h in MainWindow.cpp with Qt 6.10+.
set(NEED_QT_GUI_PRIVATE_COMPONENT ON)
find_package(Qt6 REQUIRED COMPONENTS GuiPrivate)