summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2015-01-23 15:08:01 -0800
committerTimothy J Fontaine <tjfontaine@gmail.com>2015-01-23 15:17:05 -0800
commit6168fe6720650052728f3e78a495b723f0b41ce3 (patch)
treed039c3ac29cba2a7328b7616bf30ec4e989d9ce8
parent9e387fb611e29aad3118e0b226199fdc70bbd0cd (diff)
downloadnode-6168fe6720650052728f3e78a495b723f0b41ce3.tar.gz
build: add win32 convenience build rule
PR-URL: https://github.com/joyent/node/pull/9085 PR: #9085 Reviewed-by: Julien Gilli <julien.gilli@joyent.com>
-rw-r--r--vcbuild.bat2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index 0c9b0b285..6b58209ef 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -62,6 +62,7 @@ if /i "%1"=="test" set test=test&goto arg-ok
if /i "%1"=="msi" set msi=1&set licensertf=1&goto arg-ok
if /i "%1"=="upload" set upload=1&goto arg-ok
if /i "%1"=="jslint" set jslint=1&goto arg-ok
+if /i "%1"=="build-release" set nosnapshot=1&set config=Release&set msi=1&set licensertf=1&goto arg-ok
echo Warning: ignoring invalid command line option `%1`.
@@ -223,6 +224,7 @@ echo vcbuild.bat : builds release build
echo vcbuild.bat debug : builds debug build
echo vcbuild.bat release msi : builds release build and MSI installer package
echo vcbuild.bat test : builds debug build and runs tests
+echo vcbuild.bat build-release : builds the release distribution as used by nodejs.org
goto exit
:exit