degrade not detected message and search only for x64 Qt

This commit is contained in:
Fire Cube 2025-06-25 11:43:04 +02:00
parent 59e09bfad3
commit 680fbee09c

View File

@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project # SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later # 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(SORT QT_KITS COMPARE NATURAL)
list(REVERSE QT_KITS) list(REVERSE QT_KITS)
if(QT_KITS) if(QT_KITS)
@ -9,6 +9,6 @@ if(QT_KITS)
set(CMAKE_PREFIX_PATH "${QT_PREFIX}" CACHE PATH "Qt prefix autodetected" FORCE) set(CMAKE_PREFIX_PATH "${QT_PREFIX}" CACHE PATH "Qt prefix autodetected" FORCE)
message(STATUS "Auto-detected Qt prefix: ${QT_PREFIX}") message(STATUS "Auto-detected Qt prefix: ${QT_PREFIX}")
else() else()
message(WARNING "findQt.cmake: no QtDirectory found in C:/Qt please set CMAKE_PREFIX_PATH manually") message(STATUS "findQt.cmake: no QtDirectory found in C:/Qt please set CMAKE_PREFIX_PATH manually")
endif() endif()