From c977e5df93c930b0c08436d417f4fef70d6cfded Mon Sep 17 00:00:00 2001 From: Petr Mrázek Date: Sun, 1 Jan 2012 23:38:17 +0100 Subject: No fixed number of threads in build scripts --- build/build-debug.bat | 2 +- build/build-release.bat | 2 +- build/install-debug.bat | 2 +- build/install-release.bat | 2 +- build/package-debug.bat | 2 +- build/package-release.bat | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'build') diff --git a/build/build-debug.bat b/build/build-debug.bat index 7054be33..a9492de1 100644 --- a/build/build-debug.bat +++ b/build/build-debug.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo ALL_BUILD.vcxproj cd .. \ No newline at end of file diff --git a/build/build-release.bat b/build/build-release.bat index 612ee228..95c15596 100644 --- a/build/build-release.bat +++ b/build/build-release.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=Release ALL_BUILD.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=Release ALL_BUILD.vcxproj cd .. \ No newline at end of file diff --git a/build/install-debug.bat b/build/install-debug.bat index b96ee5a1..0ae74872 100644 --- a/build/install-debug.bat +++ b/build/install-debug.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=RelWithDebInfo INSTALL.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo INSTALL.vcxproj cd .. \ No newline at end of file diff --git a/build/install-release.bat b/build/install-release.bat index 912b1ddc..d80bcdbd 100644 --- a/build/install-release.bat +++ b/build/install-release.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=Release INSTALL.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=Release INSTALL.vcxproj cd .. \ No newline at end of file diff --git a/build/package-debug.bat b/build/package-debug.bat index fd0f5a7f..e6149c56 100644 --- a/build/package-debug.bat +++ b/build/package-debug.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=RelWithDebInfo PACKAGE.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=RelWithDebInfo PACKAGE.vcxproj cd .. \ No newline at end of file diff --git a/build/package-release.bat b/build/package-release.bat index 59270480..3cc3d4af 100644 --- a/build/package-release.bat +++ b/build/package-release.bat @@ -1,4 +1,4 @@ call "%VS100COMNTOOLS%vsvars32.bat" cd VC2010 -msbuild /m:4 /p:Platform=Win32 /p:Configuration=Release PACKAGE.vcxproj +msbuild /m /p:Platform=Win32 /p:Configuration=Release PACKAGE.vcxproj cd .. \ No newline at end of file -- cgit v1.2.1