aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project
diff options
context:
space:
mode:
authorLittleboy2011-07-01 01:16:35 -0400
committerLittleboy2011-07-01 01:17:20 -0400
commit00e3f920d01be56b5882f721a3eaf40ea6210f44 (patch)
tree5dba22bc68f1694813618950bab63c094fd46b48 /devtools/create_project
parentf38a31e208cc50bfbe1e49122f66b7534a05e836 (diff)
downloadscummvm-rg350-00e3f920d01be56b5882f721a3eaf40ea6210f44.tar.gz
scummvm-rg350-00e3f920d01be56b5882f721a3eaf40ea6210f44.tar.bz2
scummvm-rg350-00e3f920d01be56b5882f721a3eaf40ea6210f44.zip
CREATE_PROJECT: Update with new location of NSIS script and updated parameters
Diffstat (limited to 'devtools/create_project')
-rw-r--r--devtools/create_project/scripts/installer.vbs5
1 files changed, 2 insertions, 3 deletions
diff --git a/devtools/create_project/scripts/installer.vbs b/devtools/create_project/scripts/installer.vbs
index d752355acd..19b4eee49b 100644
--- a/devtools/create_project/scripts/installer.vbs
+++ b/devtools/create_project/scripts/installer.vbs
@@ -72,10 +72,9 @@ Sub CreateInstaller()
' Build command line
Dim commandLine : commandLine = """" & nsisPath & "\makensis.exe"" /V2" & _
" /Dtop_srcdir=""" & rootFolder & """" & _
- " /Dbuild_dir=""" & targetFolder & """" & _
- " /Dtext_dir=""" & rootFolder & """" & _
+ " /Dstaging_dir=""" & targetFolder & """" & _
" /DARCH=""" & arch & """" & _
- " """ & rootFolder & "\dists\nsis\scummvm.nsi"""
+ " """ & rootFolder & "\dists\win32\scummvm.nsi"""
Dim oExec: Set oExec = WshShell.Exec(commandline)
If Err.Number <> 0 Then