We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb29a89 commit 905bec2Copy full SHA for 905bec2
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
195
:sign
0 commit comments