aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--misc/nsis/ioquake3.nsi.in11
1 files changed, 10 insertions, 1 deletions
diff --git a/misc/nsis/ioquake3.nsi.in b/misc/nsis/ioquake3.nsi.in
index 637035f..a2244d5 100644
--- a/misc/nsis/ioquake3.nsi.in
+++ b/misc/nsis/ioquake3.nsi.in
@@ -5,7 +5,7 @@
; This file is used to automatically build the installers in the
; openSUSE build service, don't break this!
;
-; you have to copy SDL.dll here manually
+; you have to copy SDL.dll and libcurl-4.dll here manually
; The name of the installer
Name "ioquake3"
@@ -86,6 +86,13 @@ Section "SDL.dll"
SectionEnd
+Section "libcurl"
+
+ SetOutPath $INSTDIR
+
+ File "libcurl-4.dll"
+
+SectionEnd
;--------------------------------
@@ -113,6 +120,8 @@ Section "Uninstall"
Delete $INSTDIR\SDL.dll
+ Delete $INSTDIR\libcurl-4.dll
+
Delete $INSTDIR\uninstall.exe
; Remove shortcuts, if any