A mode for NSIS to use with CodeMirror, the versatile text editor implemented in JavaScript for the browser.
Example ; The name of the installer Name "Example1" ; The file to write OutFile "example1.exe" ; Request application privileges for Windows Vista RequestExecutionLevel user ; Build Unicode installer Unicode True ; The default installation directory InstallDir $DESKTOP\Example1 ;-------------------------------- ; Pages Page directory Page instfiles ;-------------------------------- ; The stuff to install Section "" ;No components page, name is not important ; Set output path to the installation directory. SetOutPath $INSTDIR ; Put file there File example1.nsi SectionEnd
Code on GitHub