Subversion Repositories gelsvn

Rev

Rev 286 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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