forked from Ludwigstrasse/SolidDesigner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopyDll.bat
More file actions
37 lines (31 loc) · 1.89 KB
/
copyDll.bat
File metadata and controls
37 lines (31 loc) · 1.89 KB
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
@echo off
echo "Copying dlls to execution directory"
cd /d %~dp0
::--Release
xcopy .\externals\3rdParty\bin\glew32.dll .\bin\Release /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\freeimage.dll .\bin\Release /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\msvcp140_app.dll .\bin\Release /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\vcruntime140_app.dll .\bin\Release /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\log4cplusU.dll .\bin\Release /s /e /c /y /h /r
::----debug
xcopy .\externals\3rdParty\bin\glew32.dll .\bin\Debug /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\freeimage.dll .\bin\Debug /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\msvcp140_app.dll .\bin\Debug /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\vcruntime140_app.dll .\bin\Debug /s /e /c /y /h /r
xcopy .\externals\3rdParty\bin\log4cplusU.dll .\bin\Debug /s /e /c /y /h /r
::--Release
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Core.dll .\bin\Release /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Gui.dll .\bin\Release /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5OpenGL.dll .\bin\Release /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Widgets.dll .\bin\Release /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Network.dll .\bin\Release /s /e /c /y /h /r
::----debug
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Core.dll .\bin\Debug /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Gui.dll .\bin\Debug /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5OpenGL.dll .\bin\Debug /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Widgets.dll .\bin\Debug /s /e /c /y /h /r
xcopy C:\Qt\Qt5.13.2\5.13.2\msvc2015_64\bin\Qt5Network.dll .\bin\Debug /s /e /c /y /h /r
::拷贝source/resource目录下所有的资源到bin目录
xcopy .\source\resource\*.* .\bin\Release\ /s /h
pause
exit