blob: 92f8b7baa64c9fef1a12b771411a6084013be87e (
plain)
1
2
3
4
5
6
7
8
9
|
@echo off
:: A wrapper file for running dependencies.py from visual studio.
setlocal
:: Dumpbin runs link.exe /dump which detects this environment variable and
:: ignores stdout. So we need to undefine it.
set VS_UNICODE_OUTPUT=
set PYTHON=%~dp0..\..\third_party\python_24\python.exe
%PYTHON% ..\tools\build\win\dependencies.py %*
|