We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b77252f commit ff2bed6Copy full SHA for ff2bed6
vcbuild.bat
@@ -222,7 +222,9 @@ echo Project files generated.
222
if defined nobuild goto sign
223
224
@rem Build the sln with msbuild.
225
-msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
+set "msbplatform=Win32"
226
+if "%target_arch%"=="x64" set "msbplatform=x64"
227
+msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
228
if errorlevel 1 goto exit
229
230
:sign
0 commit comments