mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Don't include libcurl-4.dll or zlib1.dll in NSIS installer, they don't seem to be used.
This commit is contained in:
parent
de182882f1
commit
6d97d5c628
1 changed files with 1 additions and 15 deletions
|
@ -5,7 +5,7 @@
|
||||||
; This file is used to automatically build the installers in the
|
; This file is used to automatically build the installers in the
|
||||||
; openSUSE build service, don't break this!
|
; openSUSE build service, don't break this!
|
||||||
;
|
;
|
||||||
; you have to copy SDL.dll and libcurl-4.dll here manually
|
; you have to copy SDL.dll and OpenAL32.dll here manually
|
||||||
|
|
||||||
!define MULTIUSER_MUI
|
!define MULTIUSER_MUI
|
||||||
!define MULTIUSER_EXECUTIONLEVEL Highest
|
!define MULTIUSER_EXECUTIONLEVEL Highest
|
||||||
|
@ -78,8 +78,6 @@ Section "ioquake3 (required)"
|
||||||
; Set output path to the installation directory.
|
; Set output path to the installation directory.
|
||||||
SetOutPath $INSTDIR
|
SetOutPath $INSTDIR
|
||||||
|
|
||||||
File "zlib1.dll"
|
|
||||||
|
|
||||||
; Put file there
|
; Put file there
|
||||||
File "../../build/release-mingw32-x86/ioq3ded.x86.exe"
|
File "../../build/release-mingw32-x86/ioq3ded.x86.exe"
|
||||||
File "../../build/release-mingw32-x86/ioquake3.x86.exe"
|
File "../../build/release-mingw32-x86/ioquake3.x86.exe"
|
||||||
|
@ -127,14 +125,6 @@ Section "SDL.dll"
|
||||||
|
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
Section "libcurl"
|
|
||||||
|
|
||||||
SetOutPath $INSTDIR
|
|
||||||
|
|
||||||
File "libcurl-4.dll"
|
|
||||||
|
|
||||||
SectionEnd
|
|
||||||
|
|
||||||
Section "OpenAL-Soft library"
|
Section "OpenAL-Soft library"
|
||||||
|
|
||||||
SetOutPath $INSTDIR
|
SetOutPath $INSTDIR
|
||||||
|
@ -168,12 +158,8 @@ Section "Uninstall"
|
||||||
Delete $INSTDIR\id-readme.txt
|
Delete $INSTDIR\id-readme.txt
|
||||||
Delete $INSTDIR\voip-readme.txt
|
Delete $INSTDIR\voip-readme.txt
|
||||||
|
|
||||||
Delete $INSTDIR\zlib1.dll
|
|
||||||
|
|
||||||
Delete $INSTDIR\SDL.dll
|
Delete $INSTDIR\SDL.dll
|
||||||
|
|
||||||
Delete $INSTDIR\libcurl-4.dll
|
|
||||||
|
|
||||||
Delete $INSTDIR\OpenAL32.dll
|
Delete $INSTDIR\OpenAL32.dll
|
||||||
|
|
||||||
Delete $INSTDIR\uninstall.exe
|
Delete $INSTDIR\uninstall.exe
|
||||||
|
|
Loading…
Reference in a new issue