forked from jasonweiyi/XAPI2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CopyApiDll.bat
27 lines (23 loc) · 1.12 KB
/
CopyApiDll.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
REM 32位调试版
xcopy "include\Tdx\win32\*.*" "bin\Debug\x86\Tdx" /Y
xcopy "include\CTP\win32\*.dll" "bin\Debug\x86\CTP" /Y
xcopy "include\Kingstar\win32\*.*" "bin\Debug\x86\Kingstar" /Y
xcopy "include\LTS_v2\win32\*.dll" "bin\Debug\x86\LTS_v2" /Y
xcopy "include\UFX\win32\*.*" "bin\Debug\x86\UFX" /Y
xcopy "include\Wind\win32\*.dll" "bin\Debug\x86\Wind" /Y
xcopy "include\Sgit\win32\*.dll" "bin\Debug\x86\Sgit" /Y
xcopy "include\CTP_SOPT\win32\*.dll" "bin\Debug\x86\CTP_SOPT" /Y
REM 32位发布版
xcopy "include\Tdx\win32\*.*" "bin\Release\x86\Tdx" /Y
xcopy "include\CTP\win32\*.dll" "bin\Release\x86\CTP" /Y
xcopy "include\Kingstar\win32\*.*" "bin\Release\x86\Kingstar" /Y
xcopy "include\LTS_v2\win32\*.dll" "bin\Release\x86\LTS_v2" /Y
xcopy "include\UFX\win32\*.*" "bin\Release\x86\UFX" /Y
xcopy "include\Wind\win32\*.dll" "bin\Release\x86\Wind" /Y
xcopy "include\Sgit\win32\*.dll" "bin\Release\x86\Sgit" /Y
xcopy "include\CTP_SOPT\win32\*.dll" "bin\Release\x86\CTP_SOPT" /Y
REM 64位调试版
xcopy "include\CTP\win64\*.dll" "bin\Debug64\x64\CTP" /Y
REM 64位发布版
xcopy "include\CTP\win64\*.dll" "bin\Release64\x64\CTP" /Y
pause