diff options
| author | Petr Mrázek | 2012-01-01 23:38:17 +0100 |
|---|---|---|
| committer | Petr Mrázek | 2012-01-01 23:38:17 +0100 |
| commit | c977e5df93c930b0c08436d417f4fef70d6cfded (patch) | |
| tree | 56cf1b19dcf89eb5c69c13a8ae46ca958597f475 /build | |
| parent | 6df617e7668717574e3708c1681332ce5a6034c1 (diff) | |
| download | dfhack-c977e5df93c930b0c08436d417f4fef70d6cfded.tar.gz dfhack-c977e5df93c930b0c08436d417f4fef70d6cfded.tar.bz2 dfhack-c977e5df93c930b0c08436d417f4fef70d6cfded.tar.xz | |
No fixed number of threads in build scripts
Diffstat (limited to 'build')
| -rw-r--r-- | build/build-debug.bat | 2 | ||||
| -rw-r--r-- | build/build-release.bat | 2 | ||||
| -rw-r--r-- | build/install-debug.bat | 2 | ||||
| -rw-r--r-- | build/install-release.bat | 2 | ||||
| -rw-r--r-- | build/package-debug.bat | 2 | ||||
| -rw-r--r-- | build/package-release.bat | 2 |
6 files changed, 6 insertions, 6 deletions
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 |
