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