From aff7d8a994e63814310b6aa690e2b2642972a109 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 28 Oct 2021 23:33:02 +0200 Subject: [PATCH] Qt: fix QSvg deployment --- rpcs3/CMakeLists.txt | 2 +- rpcs3/rpcs3.vcxproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcs3/CMakeLists.txt b/rpcs3/CMakeLists.txt index b52000a3f..9a3b6c3e7 100644 --- a/rpcs3/CMakeLists.txt +++ b/rpcs3/CMakeLists.txt @@ -192,7 +192,7 @@ elseif(WIN32) # If Qt5 is installed from vcpkg, add binary path to PATH # otherwise windeployqt tool won't be able to locate necessary dlls COMMAND set PATH=${Qt5_DIR}/../../../$<$:debug/>bin/$%PATH% - COMMAND "${_WINDEPLOYQT}" --no-angle --no-compiler-runtime --no-opengl-sw --no-patchqt --no-svg --no-translations --no-quick --plugindir "$/qt/plugins" $<$:--debug> $<$:--release> "$") + COMMAND "${_WINDEPLOYQT}" --no-angle --no-compiler-runtime --no-opengl-sw --no-patchqt --no-translations --no-quick --plugindir "$/qt/plugins" $<$:--debug> $<$:--release> "$") endif() # Unix installation diff --git a/rpcs3/rpcs3.vcxproj b/rpcs3/rpcs3.vcxproj index 88a79e5ba..5040942f6 100644 --- a/rpcs3/rpcs3.vcxproj +++ b/rpcs3/rpcs3.vcxproj @@ -112,7 +112,7 @@ - $(QTDIR)\bin\windeployqt --no-angle --no-opengl-sw --no-svg --no-translations --no-quick --plugindir "$(TargetDir)qt\plugins" --release "$(TargetPath)" + $(QTDIR)\bin\windeployqt --no-angle --no-opengl-sw --no-translations --no-quick --plugindir "$(TargetDir)qt\plugins" --release "$(TargetPath)" @@ -164,7 +164,7 @@ - $(QTDIR)\bin\windeployqt --no-angle --no-opengl-sw --no-svg --no-translations --no-quick --plugindir "$(TargetDir)qt\plugins" --debug "$(TargetPath)" + $(QTDIR)\bin\windeployqt --no-angle --no-opengl-sw --no-translations --no-quick --plugindir "$(TargetDir)qt\plugins" --debug "$(TargetPath)"