From 0ea81d604f3195a1fbd0120401cd40bafce6c221 Mon Sep 17 00:00:00 2001 From: Mike Stroyan Date: Wed, 21 Sep 2016 11:19:07 -0600 Subject: build: Enable parallel windows build --- build_windows_targets.bat | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build_windows_targets.bat b/build_windows_targets.bat index e60d3bba..11a9ba7e 100644 --- a/build_windows_targets.bat +++ b/build_windows_targets.bat @@ -71,7 +71,7 @@ if %do_64%==1 ( echo Generating 64-bit CMake files for Visual Studio %VS_VERSION% cmake -G "Visual Studio %VS_VERSION% Win64" .. echo Building 64-bit Debug - msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /verbosity:quiet + msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Debug /maxcpucount /verbosity:quiet if errorlevel 1 ( echo. echo 64-bit Debug build failed! @@ -80,7 +80,7 @@ if %do_64%==1 ( ) echo Building 64-bit Release - msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release /verbosity:quiet + msbuild ALL_BUILD.vcxproj /p:Platform=x64 /p:Configuration=Release /maxcpucount /verbosity:quiet if errorlevel 1 ( echo. echo 64-bit Release build failed! @@ -101,7 +101,7 @@ if %do_32%==1 ( echo Generating 32-bit CMake files for Visual Studio %VS_VERSION% cmake -G "Visual Studio %VS_VERSION%" .. echo Building 32-bit Debug - msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug /verbosity:quiet + msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Debug /maxcpucount /verbosity:quiet if errorlevel 1 ( echo. echo 32-bit Debug build failed! @@ -110,7 +110,7 @@ if %do_32%==1 ( ) echo Building 32-bit Release - msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release /verbosity:quiet + msbuild ALL_BUILD.vcxproj /p:Platform=x86 /p:Configuration=Release /maxcpucount /verbosity:quiet if errorlevel 1 ( echo. echo 32-bit Release build failed! -- cgit v1.2.3