From 680fbee09c0768a17a819c4433e71ab97a1046a3 Mon Sep 17 00:00:00 2001 From: Fire Cube Date: Wed, 25 Jun 2025 11:43:04 +0200 Subject: [PATCH] degrade not detected message and search only for x64 Qt --- cmake/DetectQtInstallation.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/DetectQtInstallation.cmake b/cmake/DetectQtInstallation.cmake index d482ed9c7..e95e8980f 100644 --- a/cmake/DetectQtInstallation.cmake +++ b/cmake/DetectQtInstallation.cmake @@ -1,7 +1,7 @@ # SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project # SPDX-License-Identifier: GPL-2.0-or-later -file(GLOB QT_KITS LIST_DIRECTORIES true "C:/Qt/*/msvc*") +file(GLOB QT_KITS LIST_DIRECTORIES true "C:/Qt/*/msvc*_64") list(SORT QT_KITS COMPARE NATURAL) list(REVERSE QT_KITS) if(QT_KITS) @@ -9,6 +9,6 @@ if(QT_KITS) set(CMAKE_PREFIX_PATH "${QT_PREFIX}" CACHE PATH "Qt prefix auto‑detected" FORCE) message(STATUS "Auto-detected Qt prefix: ${QT_PREFIX}") else() - message(WARNING "findQt.cmake: no Qt‑Directory found in C:/Qt – please set CMAKE_PREFIX_PATH manually") + message(STATUS "findQt.cmake: no Qt‑Directory found in C:/Qt – please set CMAKE_PREFIX_PATH manually") endif()