Subversion Repositories gelsvn

Rev

Rev 284 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 284 Rev 286
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 $DOCUMENTS\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\data
-
 
28
  File /r GEL\makefiles
27
  File /r GEL\makefiles
29
  File build_solution02585.bat
28
  File build_solution02585.bat
30
  File course02585.mwc
29
  File course02585.mwc
31
  SetOutPath $INSTDIR\apps
30
  SetOutPath $INSTDIR\apps
32
    File /r GEL\apps\BloomenthalPolygonize
-
 
-
 
31
 
33
    File /r GEL\apps\BoundaryCollapse
32
  File /r GEL_getting_started_ex
-
 
33
 
34
    File /r GEL\apps\Decimator
34
  ReadEnvStr $0 GEL_BIN
35
    File /r GEL\apps\VolumePolygonize
35
  CopyFiles $0"\*.bat" $INSTDIR
36
  
-
 
37
  
-
 
38
  ExecWait '"$INSTDIR\build_solution02585.bat" $INSTDIR' $0
36
 ; ExecWait '"$INSTDIR\build_solution02585.bat" $INSTDIR' $0
39
  ; DetailPrint "some program returned $0"
37
  ; DetailPrint "some program returned $0"
40
  ;RMDir /r $INSTDIR\makefiles
38
  ;RMDir /r $INSTDIR\makefiles
41
  Delete $INSTDIR\Makefile
39
  Delete $INSTDIR\Makefile
42
  ;Delete $INSTDIR\*.mwc
40
  ;Delete $INSTDIR\*.mwc
43
  ;Delete $INSTDIR\*.mpc
41
  ;Delete $INSTDIR\*.mpc
44
  ;Delete /REBOOTOK $INSTDIR\build_solutions.bat
42
  ;Delete /REBOOTOK $INSTDIR\build_solutions.bat
-
 
43
  
45
 
44
 
46
 
45
 
47
SectionEnd ; end the section
46
SectionEnd ; end the section
48
 
47
 
49
 
48
 
50
 
49
 
51
 
50