From 3054a36dc1787b84cf0a2f8c2a2f84d9a2662c42 Mon Sep 17 00:00:00 2001 From: mcmartin Date: Tue, 12 Dec 2006 09:15:24 +0000 Subject: [PATCH] Win32 Installer now produces links to the Key Jammer and the Saves dir. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2589 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/build/win32_install/uqm-0.6.nsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sc2/build/win32_install/uqm-0.6.nsi b/sc2/build/win32_install/uqm-0.6.nsi index 71dc468e8..41c8d17ef 100644 --- a/sc2/build/win32_install/uqm-0.6.nsi +++ b/sc2/build/win32_install/uqm-0.6.nsi @@ -275,7 +275,9 @@ SectionGroup "!UQM" SECGRP01 File "README.txt" File "SDL.dll" File "SDL_image.dll" + File "SDL_gfx.dll" File "uqm.exe" + File "keyjam.exe" File "vorbis.dll" File "vorbisfile.dll" File "WhatsNew.txt" @@ -434,6 +436,8 @@ Section -ShortcutsAndIcons CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Documentation\WhatsNew.lnk" "$INSTDIR\WhatsNew.txt" CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Key Configuration.lnk" "$WINDIR\notepad" "$UQMUSERDATA\keys.cfg" CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Options Configuration.lnk" "$WINDIR\notepad" "$UQMUSERDATA\uqm.cfg" + CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Keyboard Test.lnk" "$INSTDIR\keyjam.exe" + CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Saved Games.lnk" "$UQMUSERDATA\save" IntCmp $MAKEICON 1 0 NoIcon NoIcon CreateShortCut "$DESKTOP\The Ur-Quan Masters.lnk" "$INSTDIR\uqm.exe" $UQMARGS NoIcon: @@ -513,6 +517,8 @@ Section Uninstall Delete "$INSTDIR\vorbisfile.dll" Delete "$INSTDIR\vorbis.dll" Delete "$INSTDIR\uqm.exe" + Delete "$INSTDIR\keyjam.exe" + Delete "$INSTDIR\SDL_gfx.dll" Delete "$INSTDIR\SDL_image.dll" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\README.txt" @@ -527,6 +533,8 @@ Section Uninstall Delete "$SMPROGRAMS\$ICONS_GROUP\Uninstall.lnk" Delete "$SMPROGRAMS\$ICONS_GROUP\Options Configuration.lnk" Delete "$SMPROGRAMS\$ICONS_GROUP\Key Configuration.lnk" + Delete "$SMPROGRAMS\$ICONS_GROUP\Keyboard Test.lnk" + Delete "$SMPROGRAMS\$ICONS_GROUP\Saved Games.lnk" Delete "$DESKTOP\The Ur-Quan Masters.lnk" Delete "$SMPROGRAMS\$ICONS_GROUP\The Ur-Quan Masters.lnk" Delete "$SMPROGRAMS\$ICONS_GROUP\Documentation\AUTHORS.lnk"