Merge pull request #4896 from sportica/mac_fix_space
[vuplus_xbmc] / project / Win32BuildSetup / getdeploydependencies.bat
1 @echo off
2
3 if not exist dependencies\vcredist\2008 mkdir dependencies\vcredist\2008
4 if not exist dependencies\vcredist\2010 mkdir dependencies\vcredist\2010
5 if not exist dependencies\vcredist\2008\vcredist_x86.exe (
6   echo Downloading vc90 redist...
7   ..\BuildDependencies\bin\wget -nv -O dependencies\vcredist\2008\vcredist_x86.exe http://mirrors.xbmc.org/build-deps/win32/vcredist/2008/vcredist_x86.exe
8 )
9 if not exist dependencies\vcredist\2010\vcredist_x86.exe (
10   echo Downloading vc100 redist...
11   ..\BuildDependencies\bin\wget -nv -O dependencies\vcredist\2010\vcredist_x86.exe http://mirrors.xbmc.org/build-deps/win32/vcredist/2010/vcredist_x86.exe
12 )
13
14 if not exist dependencies\dxsetup mkdir dependencies\dxsetup
15 for %%f in (DSETUP.dll dsetup32.dll dxdllreg_x86.cab DXSETUP.exe dxupdate.cab Jun2010_D3DCompiler_43_x86.cab Jun2010_d3dx9_43_x86.cab) do (
16   if not exist dependencies\dxsetup\%%f (
17     ..\BuildDependencies\bin\wget -nv -O dependencies\dxsetup\%%f http://mirrors.xbmc.org/build-deps/win32/dxsetup/%%f
18   )
19 )