Skip to content

Commit

Permalink
Fix nsis installer script
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Mar 23, 2017
1 parent 86a83c9 commit 5576702
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions klogg.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ Section "Qt5 Runtime libraries" qtlibs
File release\Qt5Gui.dll
File release\Qt5Network.dll
File release\Qt5Widgets.dll
File release\Qt5Concurrent.dll
SetOutPath $INSTDIR\platforms
File release\qwindows.dll
File release\platforms\qwindows.dll
File release\platforms\qminimal.dll
SectionEnd

Section "Create Start menu shortcut" shortcut
Expand Down Expand Up @@ -131,13 +133,14 @@ Section "Uninstall"
Delete "$INSTDIR\README.md"
Delete "$INSTDIR\COPYING"
Delete "$INSTDIR\libstdc++-6.dll"
Delete "$INSTDIR\libgcc_s_seh-1.dll
Delete "$INSTDIR\libgcc_s_seh-1.dll"
Delete "$INSTDIR\Qt5Widgets.dll"
Delete "$INSTDIR\Qt5Core.dll"
Delete "$INSTDIR\Qt5Gui.dll"
Delete "$INSTDIR\Qt5Network.dll"
Delete "$INSTDIR\Qt5Widgets.dll"
Delete "$INSTDIR\Qt5Concurrent.dll"
Delete "$INSTDIR\platforms\qwindows.dll"
Delete "$INSTDIR\platforms\qminimal.dll"
RMDir "$INSTDIR"

; Remove settings in %appdata%
Expand Down

0 comments on commit 5576702

Please sign in to comment.