summaryrefslogtreecommitdiffstats
path: root/Tools/buildbot/external.bat
blob: 411360560011a43d39d18223127f4e1fec77d6a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@rem Fetches (and builds if necessary) external dependencies

@rem Assume we start inside the Python source directory
call "Tools\buildbot\external-common.bat"
call "%VS90COMNTOOLS%\vsvars32.bat"



if not exist tcltk\bin\tcl84g.dll (

    cd tcl-8.4.18.2\win

    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all install

    cd ..\..

)



if not exist tcltk\bin\tk84g.dll (

    cd tk-8.4.18.1\win    

    nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.4.18.2 clean all install

    cd ..\..

)