-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdist.cmd
More file actions
23 lines (16 loc) · 765 Bytes
/
mkdist.cmd
File metadata and controls
23 lines (16 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if exist c:\rtest rd /s /q c:\rtest
md c:\rtest
md c:\rtest\bin
md c:\rtest\source2
xcopy /s ..\..\..\game\source2 c:\rtest\source2
xcopy ..\..\..\game\bin\rendersystemtest.exe c:\rtest
copy runbenchmarks.cmd c:\rtest
copy macrun.sh c:\rtest
copy readme.txt c:\rtest
for %%f in ( inputsystem worldrenderer filesystem_stdio ) do copy ..\..\..\game\bin\%%f.dll c:\rtest\bin
xcopy ..\..\..\game\bin\rendersystem*.dll c:\rtest\bin
xcopy ..\..\..\game\bin\*.dylib c:\rtest\bin
md c:\rtest\bin\rendersystemtest.app
xcopy /s ..\..\..\game\bin\rendersystemtest.app\*.* c:\rtest\bin\rendersystemtest.app
for %%f in ( tier0 vstdlib) do copy ..\..\..\game\bin\%%f.dll c:\rtest\bin
..\..\pkzip25 -add -dir=relative c:\rtest\rtest.zip c:\rtest\*.*