summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-07-24 20:56:31 +0200
committerJoshua Vandaƫle <joshua@vandaele.software>2026-07-24 20:56:31 +0200
commit6ec57bcc5d02c3319ad4a39a8cc277263d4eac3f (patch)
tree153b3b9bbc62dedc0fe291ec43c06f88cf0f3fc0
parentc1261e74060e9938678f2c0472c8e87196c2b496 (diff)
windeployqt: Disable uneeded DLLs
Since our bump to Qt, dxcompiler.dll and dxil.dll have been added alongside other Qt dlls as part of QtGui. Those DLLs are not needed since we use QtWidgets and not QML.
-rw-r--r--Source/Core/DolphinQt/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt
index 2e02eda5c3..bc40925131 100644
--- a/Source/Core/DolphinQt/CMakeLists.txt
+++ b/Source/Core/DolphinQt/CMakeLists.txt
@@ -574,6 +574,7 @@ if (WIN32)
--no-translations
--no-compiler-runtime
--no-system-d3d-compiler
+ --no-system-dxc-compiler
--no-opengl-sw
"$<TARGET_FILE:dolphin-emu>"
)