Subversion Repositories gelsvn

Rev

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

!include "LogicLib.nsh" 
!include "WinMessages.NSH"

; The name of the installer
Name "GEL Externals"

; The file to write
OutFile "course02585.exe"

; The default installation directory
InstallDir $DOCUMENTS\course02585

;--------------------------------

; Pages

Page directory


;--------------------------------
Page instfiles
Section ""

  CreateDirectory $INSTDIR\apps
  
  SetOutPath $INSTDIR
  File /r GEL\data
  File /r GEL\makefiles
  File build_solution02585.bat
  File course02585.mwc
  SetOutPath $INSTDIR\apps
    File /r GEL\apps\BloomenthalPolygonize
    File /r GEL\apps\BoundaryCollapse
    File /r GEL\apps\Decimator
    File /r GEL\apps\VolumePolygonize
  
  
  ExecWait '"$INSTDIR\build_solution02585.bat" $INSTDIR' $0
  ; DetailPrint "some program returned $0"
  ;RMDir /r $INSTDIR\makefiles
  Delete $INSTDIR\Makefile
  ;Delete $INSTDIR\*.mwc
  ;Delete $INSTDIR\*.mpc
  ;Delete /REBOOTOK $INSTDIR\build_solutions.bat


SectionEnd ; end the section