CMake: fix YUZU_USE_BUNDLED_QT on Linux

* the correct path (at least for 6.8.3) is gcc_64 and not linux

Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
This commit is contained in:
Caio Oliveira 2025-09-29 18:55:00 -03:00
parent f422d855b7
commit 38d870713c
Signed by: DraVee
GPG key ID: 362DA3DC1901E080

View file

@ -108,7 +108,7 @@ function(determine_qt_parameters target host_out type_out arch_out arch_path_out
set(host "linux")
set(type "desktop")
set(arch "linux_gcc_64")
set(arch_path "linux")
set(arch_path "gcc_64")
endif()
set(${host_out} "${host}" PARENT_SCOPE)