From a3006969cef885acbf142d4e02a018635f35a020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Reis?= Date: Wed, 9 Mar 2016 11:58:06 +0000 Subject: [PATCH] win,build: support Visual C++ Build Tools 2015 Invoke MSBuild specifying the target platform as generated by Gyp. Reviewed-By: James M Snell PR-URL: https://github.com/nodejs/node/pull/5627 --- vcbuild.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vcbuild.bat b/vcbuild.bat index b515af8f029b1b..ad246c62b7d80b 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -178,7 +178,9 @@ echo Project files generated. if defined nobuild goto sign @rem Build the sln with msbuild. -msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo +set "msbplatform=Win32" +if "%target_arch%"=="x64" set "msbplatform=x64" +msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo if errorlevel 1 goto exit if "%target%" == "Clean" goto exit