-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_CleanForGit.bat
More file actions
43 lines (36 loc) · 865 Bytes
/
_CleanForGit.bat
File metadata and controls
43 lines (36 loc) · 865 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
40
41
42
43
mkdir tmpbin
mkdir tmpbin\x64
mkdir tmpbin\x64\Release
mkdir tmpbin\x64\Debug
copy Bin\x64\Release\*.dll tmpbin\x64\Release
copy Bin\x64\Debug\*.dll tmpbin\x64\Debug
mkdir tmpbin\x86
mkdir tmpbin\x86\Release
mkdir tmpbin\x86\Debug
copy Bin\x86\Release\*.dll tmpbin\x86\Release
copy Bin\x86\Debug\*.dll tmpbin\x86\Debug
mkdir tmplib
mkdir tmplib\x64
mkdir tmplib\x64\Release
mkdir tmplib\x64\Debug
copy lib\x64\Release\*.* tmplib\x64\Release
copy lib\x64\Debug\*.* tmplib\x64\Debug
mkdir tmplib\x86
mkdir tmplib\x86\Release
mkdir tmplib\x86\Debug
copy lib\x86\Release\*.* tmplib\x86\Release
copy lib\x86\Debug\*.* tmplib\x86\Debug
rmdir .vs /s /q
rmdir bif /s /q
rmdir Bin /s /q
rmdir Debug /s /q
rmdir lib /s /q
rmdir man /s /q
rmdir obj /s /q
rmdir pch /s /q
rmdir Release /s /q
rmdir tlog /s /q
rmdir pdb /s /q
rmdir x64 /s /q
ren tmpbin Bin
ren tmplib lib