Skip to content

Instantly share code, notes, and snippets.

@bnoordhuis
Created February 17, 2012 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnoordhuis/1853841 to your computer and use it in GitHub Desktop.
Save bnoordhuis/1853841 to your computer and use it in GitHub Desktop.
multi-core msbuild
diff --git a/vcbuild.bat b/vcbuild.bat
index f6d0fef..54f579d 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -91,7 +91,7 @@ goto run
:msbuild-found
@rem Build the sln with msbuild.
-msbuild node.sln /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
+msbuild node.sln /m /t:%target% /p:Configuration=%config% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit
if defined nosign goto msi
@@ -104,7 +104,7 @@ python "%~dp0tools\getnodeversion.py" > "%temp%\node_version.txt"
if not errorlevel 0 echo Cannot determine current version of node.js & goto exit
for /F "tokens=*" %%i in (%temp%\node_version.txt) do set NODE_VERSION=%%i
heat dir deps\npm -var var.NPMSourceDir -dr NodeModulesFolder -cg NPMFiles -gg -template fragment -nologo -out npm.wxs
-msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /t:Clean,Build /p:Configuration=%config% /p:NodeVersion=%NODE_VERSION% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nolo
+msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build /p:Configuration=%config% /p:NodeVersion=%NODE_VERSION% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /n
if errorlevel 1 goto exit
if defined nosign goto run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment