-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRLMM_SDK_Installer.nsi
More file actions
44 lines (33 loc) · 1.05 KB
/
RLMM_SDK_Installer.nsi
File metadata and controls
44 lines (33 loc) · 1.05 KB
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
41
42
43
44
; 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 example1.nsi
; there.
;
; example2.nsi expands on this by adding a uninstaller and start menu shortcuts.
;--------------------------------
; The name of the installer
Name "RLMM SDK Installer"
; The file to write
OutFile "RLMM_SDK_Installer.exe"
; Request application privileges for Windows Vista
RequestExecutionLevel user
; Build Unicode installer
Unicode True
; The default installation directory
InstallDir $DESKTOP\RLMM_SDK
;--------------------------------
; Pages
Page directory
Page instfiles
;--------------------------------
; These are the programs that are needed by ACME Suite.
Section -Prerequisites
SetOutPath $INSTDIR
MessageBox MB_YESNO "Install UDK?" /SD IDYES IDNO endUDKInstall
File "UDKInstall-2015-02.exe"
ExecWait "UDKInstall-2015-02.exe"
Goto endUDKInstall
endUDKInstall:
SectionEnd