forked from eden-emu/eden
[cmake] use bundled Qt v6.7.3 for Apple
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
c412f51876
commit
853a6a7357
1 changed files with 6 additions and 2 deletions
|
@ -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)
|
||||
if (APPLE)
|
||||
download_qt(6.7.3)
|
||||
else()
|
||||
download_qt(6.8.3)
|
||||
endif()
|
||||
else()
|
||||
message(STATUS "Using system Qt")
|
||||
if (NOT Qt6_DIR)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue