-
Notifications
You must be signed in to change notification settings - Fork 0
/
clean-all.cmd
77 lines (77 loc) · 2.49 KB
/
clean-all.cmd
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@echo off
echo removing bin\, bmi\, lib\, obj\ and .vs\ folders...
cd third_party\bullet
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\dr-mp3
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\freetype2
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\GLEW
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\graph-collector
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\hlslparser
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\libjpeg
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\libpng
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\libzip
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\ogg
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\openal-soft
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\tinyexr
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\tinyxml2
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\vorbis
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\xz-utils
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\zlib
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\..\core
if exist bmi rmdir /s /q bmi
if exist lib rmdir /s /q lib
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..\test
if exist bin rmdir /s /q bin
if exist obj rmdir /s /q obj
if exist projects\windows\.vs rmdir /s /q projects\windows\.vs
cd ..
echo done.