File tree Expand file tree Collapse file tree 1 file changed +20
-21
lines changed Expand file tree Collapse file tree 1 file changed +20
-21
lines changed Original file line number Diff line number Diff line change 1
1
@ ECHO OFF
2
2
@ COLOR 1A
3
3
ECHO ========================Run all demos for x86-Debug==============================
4
- pwd
5
- @ pushd
6
- @ CD output\demo\x86\Debug
7
- FOR /r . %%i IN (*.exe) DO (
8
- ECHO %%i
4
+ pushd .
5
+ CD output\demo\x86\Debug
6
+ FOR /r %%i IN (*.exe) DO (
7
+ ECHO Running:%%i
9
8
%%i
10
9
)
11
- @ popd
10
+ popd
12
11
13
12
ECHO ========================Run all demos for x86-Release==============================
14
- @ pushd
15
- @ CD output\demo\x86\Release
16
- FOR /r . %%i IN (*.exe) DO (
17
- ECHO %%i
13
+ pushd .
14
+ CD output\demo\x86\Release
15
+ FOR /r %%i IN (*.exe) DO (
16
+ ECHO Running: %%i
18
17
%%i
19
18
)
20
- @ popd
19
+ popd
21
20
22
21
ECHO ========================Run all demos for x64-Debug==============================
23
- @ pushd
24
- @ CD output\demo\x64\Debug
25
- FOR /r . %%i in (*.exe) DO (
26
- ECHO %%i
22
+ pushd .
23
+ CD output\demo\x64\Debug
24
+ FOR /r %%i in (*.exe) DO (
25
+ ECHO Running: %%i
27
26
%%i
28
27
)
29
- @ popd
28
+ popd
30
29
31
30
ECHO ========================Run all demos for x64-Release==============================
32
- @ pushd
33
- @ CD output\demo\x64\Release
34
- FOR /r . %%i in (*.exe) DO (
35
- ECHO %%i
31
+ pushd .
32
+ CD output\demo\x64\Release
33
+ FOR /r %%i in (*.exe) DO (
34
+ ECHO Running: %%i
36
35
%%i
37
36
)
38
- @ popd
37
+ popd
You can’t perform that action at this time.
0 commit comments