-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathshapeworks.nsi
134 lines (98 loc) · 3.95 KB
/
shapeworks.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
; ShapeWorks.nsi
!include "Support\FileAssociation.nsh"
;--------------------------------s
; Include Modern UI
!include "MUI2.nsh"
!include "x64.nsh"
CRCCheck On
Unicode true
ManifestDPIAware true
;--------------------------------
;--------------------------------
; General
; The name of the installer
!define PRODUCT "ShapeWorks"
Name "$%SW_VERSION%"
; The file to write
OutFile "$%SW_VERSION%.exe"
; The default installation directory
InstallDir $PROGRAMFILES64\ShapeWorks
; Registry key to check for directory (so if you install again, it will
; overwrite the old one automatically)
InstallDirRegKey HKLM "Software\ShapeWorks" "Install_Dir"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;--------------------------------
;Installer Pages
!define MUI_ICON "Support/windows/installer_icon.ico"
!define MUI_UNICON "Support/windows/installer_icon.ico"
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "Support/windows/installer_header_image.bmp"
!define MUI_HEADERIMAGE_UNBITMAP "Support/windows/installer_header_image.bmp"
!define MUI_FINISHPAGE_SHOWREADME "Windows_README.txt"
!define MUI_FINISHPAGE_SHOWREADME_TEXT "Show README"
!define MUI_FINISHPAGE_TITLE "Installation Complete"
!define MUI_FINISHPAGE_TEXT "ShapeWorks Installation is complete, please take a moment to read the README."
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
; The stuff to install
Section "ShapeWorks (required)"
SectionIn RO
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File "install_shapeworks.bat"
File "python_requirements.txt"
File "Windows_README.txt"
File /r "bin"
File /r "Examples"
File /r /x Studio /x Lib "Python"
File /r "Installation"
${registerExtension} "$INSTDIR\bin\ShapeWorksStudio.exe" ".swproj" "ShapeWorks Project"
; Write the installation path into the registry
WriteRegStr HKLM SOFTWARE\ShapeWorks "Install_Dir" "$INSTDIR"
; Write the uninstall keys for Windows
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ShapeWorks" "DisplayName" "ShapeWorks"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ShapeWorks" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ShapeWorks" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ShapeWorks" "NoRepair" 1
WriteUninstaller "$INSTDIR\uninstall.exe"
SectionEnd
; Optional section (can be disabled by the user)
Section "Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\ShapeWorks"
CreateShortcut "$SMPROGRAMS\ShapeWorks\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
CreateShortcut "$SMPROGRAMS\ShapeWorks\ShapeWorksStudio.lnk" "$INSTDIR\bin\ShapeWorksStudio.exe" "" "$INSTDIR\bin\ShapeWorksStudio.exe" 0
SectionEnd
;--------------------------------
; Uninstaller
Section "Uninstall"
; Remove registry keys
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\ShapeWorks"
DeleteRegKey HKLM SOFTWARE\ShapeWorks
; Delete Files
RMDir /r "$INSTDIR\*.*"
; Remove shortcuts, if any
Delete "$SMPROGRAMS\ShapeWorks\*.*"
${unregisterExtension} ".swprojc" "ShapeWorks Project"
; Remove directories used
RMDir "$SMPROGRAMS\ShapeWorks"
RMDir "$INSTDIR"
SectionEnd
;--------------------------------
;After Initialization Function
Function .onInit
${If} ${RunningX64}
StrCpy $INSTDIR "$PROGRAMFILES64\ShapeWorks"
SetRegView 64
${EndIf}
FunctionEnd