diff options
| author | Mike Stroyan <stroyan@google.com> | 2016-09-21 11:19:07 -0600 |
|---|---|---|
| committer | Mike Stroyan <stroyan@google.com> | 2016-09-26 12:58:53 -0600 |
| commit | 0ea81d604f3195a1fbd0120401cd40bafce6c221 (patch) | |
| tree | 8efee1f5b324972bb1d7975f5c8b3c4ef478a51b | |
| parent | 1d6c1d63aab3d8c3374381722f86b7488cb9dd86 (diff) | |
| download | usermoji-0ea81d604f3195a1fbd0120401cd40bafce6c221.tar.xz | |
build: Enable parallel windows build
| -rw-r--r-- | build_windows_targets.bat | 8 |
1 files 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! |
