24 lines
490 B
NSIS
24 lines
490 B
NSIS
!cd mozilla-build
|
|
|
|
!include WinVer.nsh
|
|
RequestExecutionLevel highest
|
|
|
|
name "Mozilla Build"
|
|
SetCompressor /SOLID lzma
|
|
OutFile "..\MozillaBuildSetup.exe"
|
|
InstallDir "C:\mozilla-build"
|
|
|
|
LicenseData "..\license.rtf"
|
|
Page license
|
|
Page directory
|
|
Page instfiles
|
|
|
|
Section "MozillaBuild"
|
|
MessageBox MB_YESNO|MB_ICONQUESTION "This will delete everything in $INSTDIR. Do you want to continue?" /SD IDYES IDYES continue
|
|
SetErrors
|
|
return
|
|
continue:
|
|
SetOutPath $INSTDIR
|
|
File /r *.*
|
|
SectionEnd
|