Skip to content

Commit 5576702

Browse files
committed
Fix nsis installer script
1 parent 86a83c9 commit 5576702

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

klogg.nsi

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,10 @@ Section "Qt5 Runtime libraries" qtlibs
101101
File release\Qt5Gui.dll
102102
File release\Qt5Network.dll
103103
File release\Qt5Widgets.dll
104+
File release\Qt5Concurrent.dll
104105
SetOutPath $INSTDIR\platforms
105-
File release\qwindows.dll
106+
File release\platforms\qwindows.dll
107+
File release\platforms\qminimal.dll
106108
SectionEnd
107109

108110
Section "Create Start menu shortcut" shortcut
@@ -131,13 +133,14 @@ Section "Uninstall"
131133
Delete "$INSTDIR\README.md"
132134
Delete "$INSTDIR\COPYING"
133135
Delete "$INSTDIR\libstdc++-6.dll"
134-
Delete "$INSTDIR\libgcc_s_seh-1.dll
136+
Delete "$INSTDIR\libgcc_s_seh-1.dll"
135137
Delete "$INSTDIR\Qt5Widgets.dll"
136138
Delete "$INSTDIR\Qt5Core.dll"
137139
Delete "$INSTDIR\Qt5Gui.dll"
138140
Delete "$INSTDIR\Qt5Network.dll"
139-
Delete "$INSTDIR\Qt5Widgets.dll"
141+
Delete "$INSTDIR\Qt5Concurrent.dll"
140142
Delete "$INSTDIR\platforms\qwindows.dll"
143+
Delete "$INSTDIR\platforms\qminimal.dll"
141144
RMDir "$INSTDIR"
142145

143146
; Remove settings in %appdata%

0 commit comments

Comments
 (0)