-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCopy_Client.bat
32 lines (20 loc) · 1008 Bytes
/
Copy_Client.bat
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
::Client------------------------------------------------------------------------------------
::Engine
xcopy /y .\Engine\Bin\Engine.dll .\Client\Bin\
xcopy /y .\Engine\Bin\Engine.dll .\Client\Bin\Release\
::Blast
xcopy /y/s .\Engine\DLL\Blast\Debug\*.* .\Client\Bin\
xcopy /y/s .\Engine\DLL\Blast\Release\*.* .\Client\Bin\Release\
::ASSIMP
xcopy /y/s .\Engine\DLL\Assimp\Debug\*.* .\Client\Bin\
xcopy /y/s .\Engine\DLL\Assimp\Release\*.* .\Client\Bin\Release\
::FOMOD
xcopy /y/s .\Engine\DLL\FMOD\*.* .\Client\Bin\
xcopy /y/s .\Engine\DLL\FMOD\*.* .\Client\Bin\Release\
::PhysX
xcopy /y/s .\Engine\DLL\PhysX\Debug\*.* .\Client\Bin\
xcopy /y/s .\Engine\DLL\PhysX\Release\*.* .\Client\Bin\Release\
::ShaderFiles
xcopy /y .\Engine\Bin\ShaderFiles\*.hlsl .\Client\Bin\ShaderFiles\
xcopy /y .\Engine\Bin\ShaderFiles\*.hlsli .\Client\Bin\ShaderFiles\
::Client------------------------------------------------------------------------------------