[cmake] use bundled Qt v6.7.3 for Apple

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-07-28 16:25:47 -04:00
parent c412f51876
commit 853a6a7357
Signed by untrusted user: crueter
GPG key ID: 425ACD2D4830EBC6

View file

@ -120,7 +120,7 @@ option(YUZU_ENABLE_PORTABLE "Allow yuzu to enable portable mode if a user folder
CMAKE_DEPENDENT_OPTION(YUZU_USE_FASTER_LD "Check if a faster linker is available" ON "NOT WIN32" OFF)
CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" ON)
CMAKE_DEPENDENT_OPTION(USE_SYSTEM_MOLTENVK "Use the system MoltenVK lib (instead of the bundled one)" OFF "APPLE" OFF)
set(DEFAULT_ENABLE_OPENSSL ON)
if (ANDROID OR WIN32 OR APPLE OR ${CMAKE_SYSTEM_NAME} STREQUAL "SunOS")
@ -495,7 +495,11 @@ add_subdirectory(externals)
if (ENABLE_QT)
if (YUZU_USE_BUNDLED_QT)
download_qt(6.7.3)
if (APPLE)
download_qt(6.7.3)
else()
download_qt(6.8.3)
endif()
else()
message(STATUS "Using system Qt")
if (NOT Qt6_DIR)