From 09d2468ee84425c91b652e2cebc95d8331029a4d Mon Sep 17 00:00:00 2001 From: hyperiris Date: Thu, 14 Jan 2010 13:34:15 +0000 Subject: [PATCH] Append Dolphin IL, and shortcuts git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4832 8ced0084-cf51-0410-be5f-012b33b47a6e --- Installer/Installer_win32.nsi | 13 +++++++++---- Installer/Installer_x64.nsi | 13 +++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Installer/Installer_win32.nsi b/Installer/Installer_win32.nsi index 20c0799ed2..812c553e8b 100644 --- a/Installer/Installer_win32.nsi +++ b/Installer/Installer_win32.nsi @@ -127,6 +127,7 @@ Section "Base" SEC01 SetOutPath "$INSTDIR" SetOverwrite ifnewer File "${BASE_DIR}\Dolphin.exe" + File "${BASE_DIR}\DolphinIL.exe" File "..\Externals\Cg\cg.dll" File "..\Externals\Cg\cgGL.dll" ; File "..\Externals\Cg\cgD3D9.dll" @@ -136,8 +137,10 @@ Section "Base" SEC01 File "..\Externals\OpenAL\win32\wrap_oal.dll" ; This needs to be done after Dolphin.exe is copied CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\$(^Name).lnk" "$INSTDIR\Dolphin.exe" - CreateShortCut "$DESKTOP\$(^Name).lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Dolphin.lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$DESKTOP\Dolphin.lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\DolphinIL.lnk" "$INSTDIR\DolphinIL.exe" + CreateShortCut "$DESKTOP\DolphinIL.lnk" "$INSTDIR\DolphinIL.exe" ; Plugins SetOutPath "$INSTDIR\Plugins" @@ -223,8 +226,10 @@ Section Uninstall Delete "$INSTDIR\Dolphin.exe" Delete "$SMPROGRAMS\${PRODUCT_NAME}\${UN_NAME}.lnk" - Delete "$DESKTOP\$(^Name).lnk" - Delete "$SMPROGRAMS\${PRODUCT_NAME}\$(^Name).lnk" + Delete "$DESKTOP\Dolphin.lnk" + Delete "$SMPROGRAMS\${PRODUCT_NAME}\Dolphin.lnk" + Delete "$DESKTOP\DolphinIL.lnk" + Delete "$SMPROGRAMS\${PRODUCT_NAME}\DolphinIL.lnk" RMDir "$SMPROGRAMS\${PRODUCT_NAME}" RMDir "$INSTDIR\Sys\GC" diff --git a/Installer/Installer_x64.nsi b/Installer/Installer_x64.nsi index caebb5010c..cbca8385c4 100644 --- a/Installer/Installer_x64.nsi +++ b/Installer/Installer_x64.nsi @@ -137,6 +137,7 @@ Section "Complete" SEC01 SetOutPath "$INSTDIR" SetOverwrite ifnewer File "${BASE_DIR}\Dolphin.exe" + File "${BASE_DIR}\DolphinIL.exe" File "..\Externals\Cg64\cg.dll" File "..\Externals\Cg64\cgGL.dll" ; File "..\Externals\Cg64\cgD3D9.dll" @@ -146,8 +147,10 @@ Section "Complete" SEC01 File "..\Externals\OpenAL\win64\wrap_oal.dll" ; This needs to be done after Dolphin.exe is copied CreateDirectory "$SMPROGRAMS\${PRODUCT_NAME}" - CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\$(^Name).lnk" "$INSTDIR\Dolphin.exe" - CreateShortCut "$DESKTOP\$(^Name).lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\Dolphin x64.lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$DESKTOP\Dolphin x64.lnk" "$INSTDIR\Dolphin.exe" + CreateShortCut "$SMPROGRAMS\${PRODUCT_NAME}\DolphinIL x64.lnk" "$INSTDIR\DolphinIL.exe" + CreateShortCut "$DESKTOP\DolphinIL x64.lnk" "$INSTDIR\DolphinIL.exe" ; Plugins SetOutPath "$INSTDIR\Plugins" @@ -233,8 +236,10 @@ Section Uninstall Delete "$INSTDIR\Dolphin.exe" Delete "$SMPROGRAMS\${PRODUCT_NAME}\${UN_NAME}.lnk" - Delete "$DESKTOP\$(^Name).lnk" - Delete "$SMPROGRAMS\${PRODUCT_NAME}\$(^Name).lnk" + Delete "$DESKTOP\Dolphin x64.lnk" + Delete "$SMPROGRAMS\${PRODUCT_NAME}\Dolphin x64.lnk" + Delete "$DESKTOP\DolphinIL x64.lnk" + Delete "$SMPROGRAMS\${PRODUCT_NAME}\DolphinIL x64.lnk" RMDir "$SMPROGRAMS\${PRODUCT_NAME}" RMDir "$INSTDIR\Sys\GC"