diff options
author | Brian Curtin <brian@python.org> | 2012-05-22 16:04:32 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-05-22 16:04:32 (GMT) |
commit | 5c2725d7500e8905a47742bd0981ee7fc188b98d (patch) | |
tree | 58c052be5c8cbb0f6621604c34549b6d6bb2b00b /PCbuild/build.bat | |
parent | f0bf135cd14fe2abe212d2220af811b42ad75a57 (diff) | |
download | cpython-5c2725d7500e8905a47742bd0981ee7fc188b98d.zip cpython-5c2725d7500e8905a47742bd0981ee7fc188b98d.tar.gz cpython-5c2725d7500e8905a47742bd0981ee7fc188b98d.tar.bz2 |
Update build.bat for VS2010
Diffstat (limited to 'PCbuild/build.bat')
-rw-r--r-- | PCbuild/build.bat | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/PCbuild/build.bat b/PCbuild/build.bat index a73560e..fa0d95b 100644 --- a/PCbuild/build.bat +++ b/PCbuild/build.bat @@ -5,14 +5,15 @@ rem just for convenience. setlocal set platf=Win32 set conf=Release -set build= +set target=build +set dir=%~dp0 :CheckOpts if "%1"=="-c" (set conf=%2) & shift & shift & goto CheckOpts if "%1"=="-p" (set platf=%2) & shift & shift & goto CheckOpts -if "%1"=="-r" (set build=/rebuild) & shift & goto CheckOpts +if "%1"=="-r" (set target=rebuild) & shift & goto CheckOpts if "%1"=="-d" (set conf=Debug) & shift & goto CheckOpts -set cmd=vcbuild /useenv pcbuild.sln %build% "%conf%|%platf%" +set cmd=msbuild /p:useenv=true %dir%pcbuild.sln /t:%target% /p:Configuration=%conf% /p:Platform=%platf% echo %cmd% %cmd% |