We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2a0fde commit a300696Copy full SHA for a300696
vcbuild.bat
@@ -178,7 +178,9 @@ echo Project files generated.
178
if defined nobuild goto sign
179
180
@rem Build the sln with msbuild.
181
-msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
+set "msbplatform=Win32"
182
+if "%target_arch%"=="x64" set "msbplatform=x64"
183
+msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
184
if errorlevel 1 goto exit
185
if "%target%" == "Clean" goto exit
186
0 commit comments