Skip to content

Commit

Permalink
Windows installer: do not hardcode NSIS plugin paths
Browse files Browse the repository at this point in the history
This makes it easier to build against different installations of NSIS
where the plugin path can differ.
  • Loading branch information
eht16 committed Jan 2, 2022
1 parent a124e33 commit 94c6671
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/geany-plugins.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ Var UNINSTDIR
!include "MUI2.nsh"

;Reserve files used in .onInit, for faster start-up
ReserveFile "${NSISDIR}\Plugins\x86-unicode\System.dll"
ReserveFile "${NSISDIR}\Plugins\x86-unicode\UserInfo.dll"
ReserveFile "${NSISDIR}\Plugins\x86-unicode\InstallOptions.dll"
ReserveFile "${NSISDIR}\Plugins\x86-unicode\LangDLL.dll"
ReserveFile /plugin "System.dll"
ReserveFile /plugin "UserInfo.dll"
ReserveFile /plugin "InstallOptions.dll"
ReserveFile /plugin "LangDLL.dll"

!define MUI_ABORTWARNING
!define MUI_ICON "geany-plugins.ico"
Expand Down

0 comments on commit 94c6671

Please sign in to comment.