blob: a66d0a94bc4078b8721d1a914a16555eb2c4554c (
plain) (
blame)
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
|
@echo off
setlocal enabledelayedexpansion
SET /P AREYOUSURE=Are you sure you want to delete all generated/compiled files (Y/[N])?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO EOF
rd .\bin /s /q
md .\bin
rd .\lib /s /q
md .\lib
rd .\RenderCloth\bin /s /q
md .\RenderCloth\bin
rd .\test\bin /s /q
md .\test\bin
rd .\test\lib /s /q
md .\test\lib
rd .\samples\bin /s /q
md .\samples\bin
rd .\samples\lib /s /q
md .\samples\lib
for /d %%G in (".\compiler\vc*") do (
rd %%G /s /q
)
for /d %%G in (".\test\compiler\vc*") do (
rd %%G /s /q
)
for /d %%G in (".\RenderCloth\compiler\vc*") do (
rd %%G /s /q
)
for /d %%G in (".\samples\compiler\vc*") do (
rd %%G /s /q
)
for /d %%G in (".\compiler\android-*") do (
rd %%G /s /q
)
for /d %%G in (".\test\compiler\android-*") do (
rd %%G /s /q
)
pause
|