We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a8708 commit a693557Copy full SHA for a693557
vcbuild.bat
@@ -187,7 +187,9 @@ echo Project files generated.
187
if defined nobuild goto sign
188
189
@rem Build the sln with msbuild.
190
-msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
+set "msbplatform=Win32"
191
+if "%target_arch%"=="x64" set "msbplatform=x64"
192
+msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
193
if errorlevel 1 goto exit
194
if "%target%" == "Clean" goto exit
195
0 commit comments