forked from jasonweiyi/XAPI2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopyApiDll.bat
More file actions
23 lines (19 loc) · 897 Bytes
/
CopyApiDll.bat
File metadata and controls
23 lines (19 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
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
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