From 6168fe6720650052728f3e78a495b723f0b41ce3 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Fri, 23 Jan 2015 15:08:01 -0800 Subject: [PATCH] build: add win32 convenience build rule PR-URL: https://github.com/joyent/node/pull/9085 PR: #9085 Reviewed-by: Julien Gilli --- vcbuild.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vcbuild.bat b/vcbuild.bat index 0c9b0b285a6333..6b58209ef9a353 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