update readme and add gitignore
[client-tools.git] / tools / BuildAllDsps.btm
blob762fbd36c50dfb8493e5de9d95845edc391bc460
1 @echo off
3 set tmpFile=_allDsps.tmp
5 c:\cygwin\bin\find ../src -name "settings.rsp" > %tmpFile
7 perl -pi.bak -e"s/\/(\w*)\/build\/win32\/settings\.rsp/\/$1\/build\/win32\/$1\.dsp/g;" %tmpFile
9 cat %tmpFile
10 xargs p4 edit < %tmpFile
12 for %file in (@%tmpFile) do (echo Building %file & buildDsp.pl %file)
13 xargs p4 revert -a < %tmpFile
14 rm %tmpFile