summaryrefslogtreecommitdiff
path: root/trunk/release
diff options
context:
space:
mode:
authordcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-02-23 22:56:05 +0000
committerdcommander <dcommander@3789f03b-4d11-0410-bbf8-ca57d06f2519>2010-02-23 22:56:05 +0000
commit02d98d477575101937a30eb927143423b679425c (patch)
tree199e3bfd73e38a1c0feade8c70e6e9cc9c723093 /trunk/release
parenta23251bef90c8d20bd927ea2ef7500ab95424e8d (diff)
Fix Windows package script to accommodate new output directory for VC build
git-svn-id: https://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo@147 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'trunk/release')
-rw-r--r--trunk/release/libjpeg-turbo.nsi16
1 files changed, 8 insertions, 8 deletions
diff --git a/trunk/release/libjpeg-turbo.nsi b/trunk/release/libjpeg-turbo.nsi
index 24cf3fd..61923b5 100644
--- a/trunk/release/libjpeg-turbo.nsi
+++ b/trunk/release/libjpeg-turbo.nsi
@@ -1,6 +1,6 @@
Name "libjpeg-turbo SDK"
-OutFile libjpeg-turbo.exe
-InstallDir c:\libjpeg-turbo
+OutFile ${WSRCDIR}\libjpeg-turbo.exe
+InstallDir ${WINSTDIR}
SetCompressor bzip2
@@ -13,13 +13,13 @@ UninstPage instfiles
Section "libjpeg-turbo SDK (required)"
SectionIn RO
SetOutPath $SYSDIR
- File "turbojpeg.dll"
- File "jpeg62.dll"
+ File "${WSRCDIR}\turbojpeg.dll"
+ File "${WSRCDIR}\jpeg62.dll"
SetOutPath $INSTDIR\lib
- File "turbojpeg.lib"
- File "turbojpeg-static.lib"
- File "jpeg.lib"
- File "jpeg-static.lib"
+ File "${WSRCDIR}\turbojpeg.lib"
+ File "${WSRCDIR}\turbojpeg-static.lib"
+ File "${WSRCDIR}\jpeg.lib"
+ File "${WSRCDIR}\jpeg-static.lib"
SetOutPath $INSTDIR\include
File "win\jconfig.h"
File "jerror.h"