Added start and finish pages to NSIS installer...

...and made use of installer graphic.
This commit is contained in:
Sergey Popov 2008-09-14 13:49:51 +00:00
parent 7316f8127a
commit 4a4d5b5c3c
2 changed files with 6 additions and 1 deletions

View file

@ -587,7 +587,7 @@ env.Alias('data-dist', data_tarball)
# Windows installer
#
env.WindowsInstaller([wesnoth, wesnoth_editor, Dir(installable_subs)] + glob("*.dll") + Split("README copyright COPYING"))
env.WindowsInstaller([wesnoth, wesnoth_editor, wesnothd, Dir(installable_subs)] + glob("*.dll") + Split("README copyright COPYING"))
#
# Making Mac OS X application bundles

View file

@ -32,6 +32,7 @@
;--------------------------------
;Interface Settings
!define MUI_WELCOMEFINISHPAGE_BITMAP packaging\windows\WindowsInstallerGraphic.bmp
!define MUI_ABORTWARNING
;--------------------------------
@ -45,6 +46,7 @@
;--------------------------------
;Pages
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "COPYING"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
@ -57,6 +59,9 @@
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN wesnoth.exe
!define MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES