This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@625 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
9b3b220a13
commit
3e9e73ec59
177 changed files with 37677 additions and 0 deletions
29
Examples/example1.nsi
Normal file
29
Examples/example1.nsi
Normal file
|
@ -0,0 +1,29 @@
|
|||
; example1.nsi
|
||||
;
|
||||
; This script is perhaps one of the simplest NSIs you can make. All of the
|
||||
; optional settings are left to their default settings. The instalelr simply
|
||||
; prompts the user asking them where to install, and drops of makensisw.exe
|
||||
; there.
|
||||
;
|
||||
|
||||
; The name of the installer
|
||||
Name "Example1"
|
||||
|
||||
; The file to write
|
||||
OutFile "example1.exe"
|
||||
|
||||
; The default installation directory
|
||||
InstallDir $PROGRAMFILES\Example1
|
||||
|
||||
; The text to prompt the user to enter a directory
|
||||
DirText "This will install the very simple example1 on your computer. Choose a directory"
|
||||
|
||||
; The stuff to install
|
||||
Section "ThisNameIsIgnoredSoWhyBother?"
|
||||
; Set output path to the installation directory.
|
||||
SetOutPath $INSTDIR
|
||||
; Put file there
|
||||
File ..\makensisw.exe
|
||||
SectionEnd ; end the section
|
||||
|
||||
; eof
|
Loading…
Add table
Add a link
Reference in a new issue