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 03c7d6ce4a
commit 7d52779db2
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(host "linux")
set(type "desktop") set(type "desktop")
set(arch "linux_gcc_64") set(arch "linux_gcc_64")
set(arch_path "linux") set(arch_path "gcc_64")
endif() endif()
set(${host_out} "${host}" PARENT_SCOPE) set(${host_out} "${host}" PARENT_SCOPE)