forked from SteveShaw/dconsole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CleanWin32.bat
53 lines (44 loc) · 1.17 KB
/
CleanWin32.bat
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
echo off
call "%VS90COMNTOOLS%vsvars32.bat" x86
echo +
echo + Cleaning sdl_example [Debug]
echo +
devenv samples/sdl_example/sdl_example.sln /clean "Debug|Win32"
echo +
echo + Cleaned sdl_example [Debug]
echo +
echo +
echo + Cleaning sdl_example [Release]
echo +
devenv samples/sdl_example/sdl_example.sln /clean "Release|Win32"
echo +
echo + Cleaned sdl_example [Release]
echo +
echo +
echo + Cleaning dx9_example [Debug]
echo +
devenv samples/dx9_example/dx9_example.sln /clean "Debug|Win32"
echo +
echo + Cleaned dx9_example [Debug]
echo +
echo +
echo + Cleaning dx9_example [Release]
echo +
devenv samples/dx9_example/dx9_example.sln /clean "Release|Win32"
echo +
echo + Cleaned dx9_example [Release]
echo +
echo +
echo + Cleaning console_cmdline_example [Debug]
echo +
devenv samples/console_cmdline_example/console_cmdline_example.sln /clean "Debug|Win32"
echo +
echo + Cleaned console_cmdline_example [Debug]
echo +
echo +
echo + Cleaning console_cmdline_example [Release]
echo +
devenv samples/console_cmdline_example/console_cmdline_example.sln /clean "Release|Win32"
echo +
echo + Cleaned console_cmdline_example [Release]
echo +