repo.or.cz
/
Torque-3d.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge pull request #1644 from Bradan/development
[Torque-3d.git]
/
generateAllProjects.bat
blob
a2e36ef7c59dc1538152b249c08b882f795084b9
1
@echo off
2
setlocal
3
4
for /F "delims=^" %%a in (allProjects.txt) do if exist "%%a"\generateProjects.bat (
5
6
setlocal
7
8
echo.
9
echo.
10
echo === %%a =========
11
echo.
12
13
cd %%a
14
call generateProjects.bat noPause
15
16
endlocal
17
)
18
19
endlocal
20
21
echo.
22
pause