From 4014b45cb64c41ca6a581081793391e7957161bd Mon Sep 17 00:00:00 2001 From: DraVee Date: Sun, 22 Feb 2026 03:09:23 +0100 Subject: [PATCH] [cmake] Remove not working QT_VERSION check (#3553) * fix copy of files to bin dir on MSVC * does we even support Qt5? I dont think so Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3553 Reviewed-by: Lizzie Reviewed-by: CamilleLaVey Co-authored-by: DraVee Co-committed-by: DraVee --- src/yuzu/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index 178bb540f5..1fb87fe1f8 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -430,7 +430,7 @@ if(UNIX AND NOT APPLE) install(TARGETS yuzu) endif() -if (WIN32 AND NOT YUZU_USE_BUNDLED_QT AND QT_VERSION VERSION_GREATER_EQUAL 6) +if (WIN32 AND NOT YUZU_USE_BUNDLED_QT) set(YUZU_EXE_DIR "$") add_custom_command(TARGET yuzu POST_BUILD COMMAND ${WINDEPLOYQT_EXECUTABLE} "${YUZU_EXE_DIR}/eden.exe" --dir "${YUZU_EXE_DIR}" --libdir "${YUZU_EXE_DIR}" --plugindir "${YUZU_EXE_DIR}/plugins" --no-compiler-runtime --no-opengl-sw --no-system-d3d-compiler --no-translations --verbose 0) endif()