Compare commits

...

1 Commits

Author SHA1 Message Date
crueter 88ac59a501
[cmake] Test Qt 6.9.3 on macOS
I'm tired of maintaining the 6.7.3 build, let's just see if this works
or not.

Signed-off-by: crueter <crueter@eden-emu.dev>
2026-02-15 14:25:18 -05:00
1 changed files with 4 additions and 7 deletions

View File

@ -625,14 +625,11 @@ endif()
# Qt stuff
if (ENABLE_QT)
if (YUZU_USE_BUNDLED_QT)
# Qt 6.8+ is broken on macOS (??)
if (APPLE)
AddQt(6.7.3)
else()
AddQt(6.9.3)
endif()
AddQt(6.9.3)
set(YUZU_STATIC_BUILD ON)
if (NOT PLATFORM_LINUX)
set(YUZU_STATIC_BUILD ON)
endif()
else()
message(STATUS "Using system Qt")
if (NOT Qt6_DIR)