blob: 7917e61bcc3e49b3821b632145e1caf9bec9e1b3 (
plain)
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
|
; DevIL.nsi
Name "Developer's Image Library 1.7.1 Run-time Files"
; The file to write
OutFile "DevIL-1.7.1.exe"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
; Pages
Page components
Page instfiles
;--------------------------------
; The stuff to install
Section "Developer's Image Library (required)"
SectionIn RO
; Set output path to the installation directory.
SetOutPath $SYSDIR
; Put file there
File "..\devil\lib\devil.dll"
File "..\devil\lib\ilu.dll"
File "..\devil\lib\ilut.dll"
SectionEnd
|