This repository has been archived by the owner on Jul 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCopyDependenciesBinaries.bat
92 lines (77 loc) · 7 KB
/
CopyDependenciesBinaries.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
mkdir Bin\DebugX64
mkdir Bin\ReleaseX64
::FreeImage (We dont use debug version for performance)
copy External\Freeimage\Dist\x64\FreeImage.dll Bin\DebugX64
copy External\Freeimage\Dist\x64\FreeImage.lib Bin\DebugX64
copy External\Freeimage\Dist\x64\FreeImage.dll Bin\ReleaseX64
copy External\Freeimage\Dist\x64\FreeImage.lib Bin\ReleaseX64
::Assimp (We dont use debug version for performance)
copy External\CmakeProjects\Assimp\bin\Release\assimp-vc143-mt.dll Bin\DebugX64
copy External\CmakeProjects\Assimp\lib\Release\assimp-vc143-mt.lib Bin\DebugX64
copy External\CmakeProjects\Assimp\bin\Release\assimp-vc143-mt.dll Bin\ReleaseX64
copy External\CmakeProjects\Assimp\lib\Release\assimp-vc143-mt.lib Bin\ReleaseX64
::OpenAL-soft debug
copy External\CmakeProjects\OpenAL\Debug\OpenAL32.dll Bin\DebugX64
copy External\CmakeProjects\OpenAL\Debug\OpenAL32.exp Bin\DebugX64
copy External\CmakeProjects\OpenAL\Debug\OpenAL32.lib Bin\DebugX64
copy External\CmakeProjects\OpenAL\Debug\OpenAL32.pdb Bin\DebugX64
copy External\CmakeProjects\OpenAL\Release\OpenAL32.dll Bin\ReleaseX64
copy External\CmakeProjects\OpenAL\Release\OpenAL32.exp Bin\ReleaseX64
copy External\CmakeProjects\OpenAL\Release\OpenAL32.lib Bin\ReleaseX64
::PhysX Debug
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysX_64.dll Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXCommon_64.dll Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXFoundation_64.dll Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysX_64.lib Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXCommon_64.lib bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXFoundation_64.lib Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXExtensions_static_64.lib Bin\DebugX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\debug\PhysXPvdSDK_static_64.lib Bin\DebugX64
::PhysX Release
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysX_64.dll Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXCommon_64.dll Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXFoundation_64.dll Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysX_64.lib Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXCommon_64.lib Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXFoundation_64.lib Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXExtensions_static_64.lib Bin\ReleaseX64
copy External\PhysX\physx\bin\win.x86_64.vc142.mt\release\PhysXPvdSDK_static_64.lib Bin\ReleaseX64
::Diligent Debug
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D11\Debug\GraphicsEngineD3D11_64d.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D12\Debug\GraphicsEngineD3D12_64d.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineOpenGL\Debug\GraphicsEngineOpenGL_64d.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineVulkan\Debug\GraphicsEngineVk_64d.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsAccessories\Debug\Diligent-GraphicsAccessories.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsTools\Debug\Diligent-GraphicsTools.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Platforms\Basic\Debug\Diligent-BasicPlatform.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Platforms\Win32\Debug\Diligent-Win32Platform.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Common\Debug\Diligent-Common.lib Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D11\Debug\GraphicsEngineD3D11_64d.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D12\Debug\GraphicsEngineD3D12_64d.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineOpenGL\Debug\GraphicsEngineOpenGL_64d.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineVulkan\Debug\GraphicsEngineVk_64d.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsAccessories\Debug\Diligent-GraphicsAccessories.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsTools\Debug\Diligent-GraphicsTools.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Platforms\Basic\Debug\Diligent-BasicPlatform.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Platforms\Win32\Debug\Diligent-Win32Platform.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Common\Debug\Diligent-Common.pdb Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D11\Debug\GraphicsEngineD3D11_64d.dll Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D12\Debug\GraphicsEngineD3D12_64d.dll Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineOpenGL\Debug\GraphicsEngineOpenGL_64d.dll Bin\DebugX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineVulkan\Debug\GraphicsEngineVk_64d.dll Bin\DebugX64
::Diligent Release
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D11\Release\GraphicsEngineD3D11_64r.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D12\Release\GraphicsEngineD3D12_64r.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineOpenGL\Release\GraphicsEngineOpenGL_64r.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineVulkan\Release\GraphicsEngineVk_64r.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsAccessories\Release\Diligent-GraphicsAccessories.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsTools\Release\Diligent-GraphicsTools.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Platforms\Basic\Release\Diligent-BasicPlatform.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Platforms\Win32\Release\Diligent-Win32Platform.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Common\Release\Diligent-Common.lib Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D11\Release\GraphicsEngineD3D11_64r.dll Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineD3D12\Release\GraphicsEngineD3D12_64r.dll Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineOpenGL\Release\GraphicsEngineOpenGL_64r.dll Bin\ReleaseX64
copy External\CmakeProjects\Diligent\Graphics\GraphicsEngineVulkan\Release\GraphicsEngineVk_64r.dll Bin\ReleaseX64
pause
exit 0