diff options
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/buildbot/build.bat | 1 | ||||
-rw-r--r-- | Tools/buildbot/external.bat | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Tools/buildbot/build.bat b/Tools/buildbot/build.bat index 00bbdbb..e3b77be 100644 --- a/Tools/buildbot/build.bat +++ b/Tools/buildbot/build.bat @@ -1,3 +1,4 @@ @rem Used by the buildbot "compile" step. +cmd /c Tools\buildbot\external.bat call "%VS71COMNTOOLS%vsvars32.bat" devenv.com /useenv /build Debug PCbuild\pcbuild.sln diff --git a/Tools/buildbot/external.bat b/Tools/buildbot/external.bat new file mode 100644 index 0000000..5dd1114 --- /dev/null +++ b/Tools/buildbot/external.bat @@ -0,0 +1,8 @@ +@rem Fetches (and builds if necessary) external dependencies
+
+@rem Assume we start inside the Python source directory
+cd ..
+
+@rem bzip
+if not exist bzip2-1.0.3 svn export http://svn.python.org/projects/external/bzip2-1.0.3
+
|