diff options
author | sr55 <[email protected]> | 2011-09-25 16:40:26 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-09-25 16:40:26 +0000 |
commit | 3a34f16a25e45e87e27cc107fd489eef1abc73f7 (patch) | |
tree | 8be7ce43aefe75ee8814bbca8f9cc064c2d777e6 /win/CS/Installer/MakeNightly.nsi.tmpl | |
parent | ea437273cecf5bddcc7b8913bb4e8eef6b60d53b (diff) |
WinGui: Added implementation of IWindsorInstaller to the AppServices library and updated the installers to use wildcards instead of hard coded files.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4251 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Installer/MakeNightly.nsi.tmpl')
-rw-r--r-- | win/CS/Installer/MakeNightly.nsi.tmpl | 50 |
1 files changed, 8 insertions, 42 deletions
diff --git a/win/CS/Installer/MakeNightly.nsi.tmpl b/win/CS/Installer/MakeNightly.nsi.tmpl index 865da9c36..e33ee26fc 100644 --- a/win/CS/Installer/MakeNightly.nsi.tmpl +++ b/win/CS/Installer/MakeNightly.nsi.tmpl @@ -124,31 +124,19 @@ Section "Handbrake" SEC01 ${EndIf}
; Install Files
- File "Handbrake.exe"
- File "HandBrakeCLI.exe"
+ ; Install Files
+ File "*.exe"
CreateDirectory "$SMPROGRAMS\Handbrake"
CreateShortCut "$SMPROGRAMS\Handbrake\Handbrake.lnk" "$INSTDIR\Handbrake.exe"
CreateShortCut "$DESKTOP\Handbrake.lnk" "$INSTDIR\Handbrake.exe"
- File "Growl.Connector.dll"
- File "Growl.CoreLibrary.dll"
- File "Handbrake.exe.config"
- File "HandBrake.ApplicationServices.dll"
- File "Microsoft.WindowsAPICodePack.Shell.dll"
- File "Microsoft.WindowsAPICodePack.dll"
- File "HandBrakeInterop.dll"
- File "SplitButton.dll"
- File "Ookii.Dialogs.Wpf.dll"
- File "defaultsettings.xml"
+ File "*.dll"
+ File "*.config"
+ File "*.xml"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
SetOverwrite ifnewer
- File "doc\AUTHORS"
- File "doc\COPYING"
- File "doc\CREDITS"
- File "doc\NEWS"
- File "doc\THANKS"
- File "doc\TRANSLATIONS"
+ File "doc\*.*"
SectionEnd
Section -AdditionalIcons
@@ -178,30 +166,8 @@ FunctionEnd Section Uninstall
Delete "$INSTDIR\uninst.exe"
- Delete "$INSTDIR\Interop.QTOLibrary.dll"
- Delete "$INSTDIR\Interop.QTOControlLib.dll"
- Delete "$INSTDIR\AxInterop.QTOControlLib.dll"
- Delete "$INSTDIR\HandBrakeCLI.exe"
- Delete "$INSTDIR\handbrakepineapple.ico"
- Delete "$INSTDIR\Handbrake.exe"
- Delete "$INSTDIR\Handbrake.exe.config"
- Delete "$INSTDIR\Growl.Connector.dll"
- 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\HandBrakeInterop.dll"
- Delete "$INSTDIR\SplitButton.dll"
- Delete "$INSTDIR\Ookii.Dialogs.Wpf.dll"
- Delete "$INSTDIR\defaultsettings.dll"
-
- Delete "$INSTDIR\doc\AUTHORS"
- Delete "$INSTDIR\doc\COPYING"
- Delete "$INSTDIR\doc\CREDITS"
- Delete "$INSTDIR\doc\NEWS"
- Delete "$INSTDIR\doc\THANKS"
- Delete "$INSTDIR\doc\TRANSLATIONS"
+ Delete "$INSTDIR\*.*"
+ Delete "$INSTDIR\doc\*.*"
RMDir "$INSTDIR\doc"
Delete "$SMPROGRAMS\Handbrake\Uninstall.lnk"
Delete "$DESKTOP\Handbrake.lnk"
|