aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/clean.bat
blob: c07b1edc4a861bac72bd9917ed4b9f5918cb66f4 (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
@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

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
)

pause