forked from pokermania/pokereval
-
Notifications
You must be signed in to change notification settings - Fork 36
/
poker-eval.nsi
40 lines (27 loc) · 832 Bytes
/
poker-eval.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
; poker-eval.nsi
; based on
; 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 installer simply
; prompts the user asking them where to install, and drops a copy of makensisw.exe
; there.
;--------------------------------
; The name of the installer
Name "poker-eval"
; The file to write
OutFile "poker-eval.exe"
; The default installation directory
InstallDir $PROGRAMFILES\poker-eval
;--------------------------------
; 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 /r "poker-eval\*"
SectionEnd ; end the section