Subversion Repositories gelsvn

Rev

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