diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-11 20:13:34 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-11 20:13:34 (GMT) |
commit | f0e5d24935ee8252d34b1dd791d7d8bb615f1889 (patch) | |
tree | 00b26dc73071bedc963d7e240786b77add2f38be /Swift/Packaging/nsis | |
parent | c6ee342203e719572a2f9e371eac3bb85770988e (diff) | |
download | swift-contrib-f0e5d24935ee8252d34b1dd791d7d8bb615f1889.zip swift-contrib-f0e5d24935ee8252d34b1dd791d7d8bb615f1889.tar.bz2 |
Add NSIS support to scons file.
Diffstat (limited to 'Swift/Packaging/nsis')
-rw-r--r-- | Swift/Packaging/nsis/swift.nsi | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/Swift/Packaging/nsis/swift.nsi b/Swift/Packaging/nsis/swift.nsi index f62450b..862dca5 100644 --- a/Swift/Packaging/nsis/swift.nsi +++ b/Swift/Packaging/nsis/swift.nsi @@ -1,10 +1,7 @@ # set dependencies !define buildDate "20090811" -!define swiftBuildDir "..\..\QtUI\" -!define openSSLDir "G:\usr\openssl-0.9.8a.win32\bin" -!define msvccRedistributableDir "G:\devel\vcredist" +!define swiftBuildDir "..\..\QtUI\Swift" !define msvccRedistributableExe "vcredist_x86.exe" -!define qtDLLDir "G:\Qt\4.5.2-lgpl-vs2008\bin" # define installer name @@ -24,13 +21,13 @@ setOutPath $INSTDIR # Specify files to go in output path. # If you update this list, update the uninstall list too. file ${swiftBuildDir}\Swift.exe -file ${openSSLDir}\ssleay32.dll -file ${openSSLDir}\libeay32.dll -file ${qtDLLDir}\phonon4.dll -file ${qtDLLDir}\QtCore4.dll -file ${qtDLLDir}\QtGui4.dll -file ${qtDLLDir}\QtWebKit4.dll -file ${qtDLLDir}\QtNetwork4.dll +file ${swiftBuildDir}\ssleay32.dll +file ${swiftBuildDir}\libeay32.dll +file ${swiftBuildDir}\phonon4.dll +file ${swiftBuildDir}\QtCore4.dll +file ${swiftBuildDir}\QtGui4.dll +file ${swiftBuildDir}\QtWebKit4.dll +file ${swiftBuildDir}\QtNetwork4.dll # create start menu item createShortCut "$SMPROGRAMS\Swift\Swift.lnk" "$INSTDIR\Swift.exe" |