Rev 286 | 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 H:\course02585
;--------------------------------
; Pages
Page directory
;--------------------------------
Page instfiles
Section ""
CreateDirectory $INSTDIR\apps
SetOutPath $INSTDIR
File /r GEL\makefiles
File build_solution02585.bat
File course02585.mwc
SetOutPath $INSTDIR\apps
File /r GEL_getting_started_ex
ReadEnvStr $0 GEL_BIN
CopyFiles $0"\*.bat" $INSTDIR
; 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