bug fix for installation on Windows (missing platform dlls of Qt), thanks to mickg100 for the patch
This commit is contained in:
parent
1ec3fbc485
commit
199d52cde2
1 changed files with 7 additions and 0 deletions
|
@ -79,6 +79,11 @@ Section
|
||||||
; cleanup: remove temporary Microsoft Visual Studio redistributable executable
|
; cleanup: remove temporary Microsoft Visual Studio redistributable executable
|
||||||
Delete $INSTDIR\${VS_REDIST_EXE}
|
Delete $INSTDIR\${VS_REDIST_EXE}
|
||||||
|
|
||||||
|
; additional platform dlls
|
||||||
|
SetOutPath $INSTDIR\platforms
|
||||||
|
File "$%QTDIR%\plugins\platforms\qwindows.dll"
|
||||||
|
File "$%QTDIR%\plugins\platforms\qminimal.dll"
|
||||||
|
|
||||||
; accessible qt plugin
|
; accessible qt plugin
|
||||||
SetOutPath $INSTDIR\accessible
|
SetOutPath $INSTDIR\accessible
|
||||||
File "$%QTDIR%\plugins\accessible\qtaccessiblewidgets.dll"
|
File "$%QTDIR%\plugins\accessible\qtaccessiblewidgets.dll"
|
||||||
|
@ -113,6 +118,8 @@ Delete $INSTDIR\icuuc49.dll
|
||||||
Delete $INSTDIR\libEGL.dll
|
Delete $INSTDIR\libEGL.dll
|
||||||
Delete $INSTDIR\libGLESv2.dll
|
Delete $INSTDIR\libGLESv2.dll
|
||||||
Delete $INSTDIR\COPYING
|
Delete $INSTDIR\COPYING
|
||||||
|
Delete $INSTDIR\platforms\qwindows.dll
|
||||||
|
Delete $INSTDIR\platforms\qminimal.dll
|
||||||
Delete $INSTDIR\accessible\qtaccessiblewidgets.dll
|
Delete $INSTDIR\accessible\qtaccessiblewidgets.dll
|
||||||
RMDir $INSTDIR\accessible
|
RMDir $INSTDIR\accessible
|
||||||
RMDir $INSTDIR
|
RMDir $INSTDIR
|
||||||
|
|
Loading…
Reference in a new issue