Subversion Repositories gelsvn

Rev

Rev 286 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 286 Rev 287
1
!include "LogicLib.nsh" 
1
!include "LogicLib.nsh" 
2
!include "WinMessages.NSH"
2
!include "WinMessages.NSH"
3
 
3
 
4
; The name of the installer
4
; The name of the installer
5
Name "GEL Externals"
5
Name "GEL Externals"
6
 
6
 
7
; The file to write
7
; The file to write
8
OutFile "course02585.exe"
8
OutFile "course02585.exe"
9
 
9
 
10
; The default installation directory
10
; The default installation directory
11
InstallDir $DOCUMENTS\course02585
11
InstallDir H:\course02585
12
 
12
 
13
;--------------------------------
13
;--------------------------------
14
 
14
 
15
; Pages
15
; Pages
16
 
16
 
17
Page directory
17
Page directory
18
 
18
 
19
 
19
 
20
;--------------------------------
20
;--------------------------------
21
Page instfiles
21
Page instfiles
22
Section ""
22
Section ""
23
 
23
 
24
  CreateDirectory $INSTDIR\apps
24
  CreateDirectory $INSTDIR\apps
25
  
25
  
26
  SetOutPath $INSTDIR
26
  SetOutPath $INSTDIR
27
  File /r GEL\makefiles
27
  File /r GEL\makefiles
28
  File build_solution02585.bat
28
  File build_solution02585.bat
29
  File course02585.mwc
29
  File course02585.mwc
30
  SetOutPath $INSTDIR\apps
30
  SetOutPath $INSTDIR\apps
31
 
31
 
32
  File /r GEL_getting_started_ex
32
  File /r GEL_getting_started_ex
33
 
33
 
34
  ReadEnvStr $0 GEL_BIN
34
  ReadEnvStr $0 GEL_BIN
35
  CopyFiles $0"\*.bat" $INSTDIR
35
  CopyFiles $0"\*.bat" $INSTDIR
36
 ; ExecWait '"$INSTDIR\build_solution02585.bat" $INSTDIR' $0
36
 ; ExecWait '"$INSTDIR\build_solution02585.bat" $INSTDIR' $0
37
  ; DetailPrint "some program returned $0"
37
  ; DetailPrint "some program returned $0"
38
  ;RMDir /r $INSTDIR\makefiles
38
  ;RMDir /r $INSTDIR\makefiles
39
  Delete $INSTDIR\Makefile
39
  Delete $INSTDIR\Makefile
40
  ;Delete $INSTDIR\*.mwc
40
  ;Delete $INSTDIR\*.mwc
41
  ;Delete $INSTDIR\*.mpc
41
  ;Delete $INSTDIR\*.mpc
42
  ;Delete /REBOOTOK $INSTDIR\build_solutions.bat
42
  ;Delete /REBOOTOK $INSTDIR\build_solutions.bat
43
  
43
  
44
 
44
 
45
 
45
 
46
SectionEnd ; end the section
46
SectionEnd ; end the section
47
 
47
 
48
 
48
 
49
 
49
 
50
 
50