diff options
author | sr55 <[email protected]> | 2010-06-27 14:26:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-27 14:26:36 +0000 |
commit | c6789912c4c9bbd537ce2ca42502f3a3cc089618 (patch) | |
tree | 1084777dae1abdecfe01930ce2bd0362ccefcf24 /win/C#/Installer | |
parent | eb5d02bcc686fa27dd9c132657feff1672ab0add (diff) |
WinGui:
- Fix the Installer script to include the new Win7 API Dlls.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3414 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Installer')
-rw-r--r-- | win/C#/Installer/Installer.nsi | 4 | ||||
-rw-r--r-- | win/C#/Installer/MakeNightly.nsi.tmpl | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/win/C#/Installer/Installer.nsi b/win/C#/Installer/Installer.nsi index 51ec1df64..aa92ec015 100644 --- a/win/C#/Installer/Installer.nsi +++ b/win/C#/Installer/Installer.nsi @@ -135,6 +135,8 @@ Section "Handbrake" SEC01 File "Handbrake.exe.config"
File "handbrakepineapple.ico"
File "HandBrake.ApplicationServices.dll"
+ File "Microsoft.WindowsAPICodePack.Shell.dll"
+ File "Microsoft.WindowsAPICodePack.dll"
SetOutPath "$INSTDIR\doc"
SetOverwrite ifnewer
@@ -183,6 +185,8 @@ Section Uninstall Delete "$INSTDIR\Growl.CoreLibrary.dll"
Delete "$INSTDIR\libgcc_s_sjlj-1.dll"
Delete "$INSTDIR\HandBrake.ApplicationServices.dll"
+ Delete "$INSTDIR\Microsoft.WindowsAPICodePack.Shell.dll"
+ Delete "$INSTDIR\Microsoft.WindowsAPICodePack.dll"
Delete "$INSTDIR\doc\AUTHORS"
Delete "$INSTDIR\doc\COPYING"
Delete "$INSTDIR\doc\CREDITS"
diff --git a/win/C#/Installer/MakeNightly.nsi.tmpl b/win/C#/Installer/MakeNightly.nsi.tmpl index 5a13a6b58..7adbe40d7 100644 --- a/win/C#/Installer/MakeNightly.nsi.tmpl +++ b/win/C#/Installer/MakeNightly.nsi.tmpl @@ -132,6 +132,8 @@ Section "Handbrake" SEC01 File "Growl.CoreLibrary.dll"
File "Handbrake.exe.config"
File "HandBrake.ApplicationServices.dll"
+ File "Microsoft.WindowsAPICodePack.Shell.dll"
+ File "Microsoft.WindowsAPICodePack.dll"
SectionEnd
Section -AdditionalIcons
@@ -169,6 +171,8 @@ Section Uninstall Delete "$INSTDIR\Growl.Connector.dll"
Delete "$INSTDIR\Growl.CoreLibrary.dll"
Delete "$INSTDIR\HandBrake.ApplicationServices.dll"
+ Delete "$INSTDIR\Microsoft.WindowsAPICodePack.Shell.dll"
+ Delete "$INSTDIR\Microsoft.WindowsAPICodePack.dll"
RMDir "$INSTDIR"
Delete "$SMPROGRAMS\Handbrake\Uninstall.lnk"
Delete "$DESKTOP\Handbrake.lnk"
|