forked from tishion/mmLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunAllDemo.bat
More file actions
39 lines (35 loc) · 745 Bytes
/
Copy pathRunAllDemo.bat
File metadata and controls
39 lines (35 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@ECHO OFF
@COLOR 1A
ECHO ========================Run all demos for x86-Debug==============================
pushd .
CD output\demo\x86\Debug
FOR /r %%i IN (*.exe) DO (
ECHO Running:%%i
%%i
)
popd
ECHO ========================Run all demos for x86-Release==============================
pushd .
CD output\demo\x86\Release
FOR /r %%i IN (*.exe) DO (
ECHO Running:%%i
%%i
)
popd
ECHO ========================Run all demos for x64-Debug==============================
pushd .
CD output\demo\x64\Debug
FOR /r %%i in (*.exe) DO (
ECHO Running:%%i
%%i
)
popd
ECHO ========================Run all demos for x64-Release==============================
pushd .
CD output\demo\x64\Release
FOR /r %%i in (*.exe) DO (
ECHO Running:%%i
%%i
)
popd
pause