| Christian Heimes | 4a7cae5 | 2007-11-08 23:55:45 +0000 | [diff] [blame^] | 1 | @echo off |
| 2 | rem Set these values according to where you installed the software |
| 3 | rem You need to install the necessary bits mentioned in: |
| 4 | rem http://wiki.python.org/moin/Building_Python_with_the_free_MS_C_Toolkit |
| 5 | |
| 6 | set TOOLKIT=%ProgramFiles%\Microsoft Visual C++ Toolkit 2003 |
| 7 | set SDK=%ProgramFiles%\Microsoft Platform SDK for Windows Server 2003 R2 |
| 8 | set NET=%ProgramFiles%\Microsoft Visual Studio .NET 2003 |
| 9 | set NANT=%ProgramFiles%\Nant |
| 10 | |
| 11 | set PATH=%TOOLKIT%\bin;%PATH%;%SDK%\Bin\Win64;%NANT%\bin;%SDK%\bin |
| 12 | set INCLUDE=%TOOLKIT%\include;%SDK%\Include;%INCLUDE% |
| 13 | set LIB=%TOOLKIT%\lib;%NET%\VC7\lib;%SDK%\lib;%LIB% |
| 14 | |
| 15 | echo Build environment for Python |
| 16 | echo TOOLKIT=%TOOLKIT% |
| 17 | echo SDK=%SDK% |
| 18 | echo NET=%NET% |
| 19 | echo NANT=%NANT% |
| 20 | echo Commands: |
| 21 | echo * build |
| 22 | echo * rt |