forked from ketoo/NoahGameFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path墙内下载依赖库.bat
More file actions
32 lines (14 loc) · 741 Bytes
/
墙内下载依赖库.bat
File metadata and controls
32 lines (14 loc) · 741 Bytes
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
git submodule update --init --recursive
cd Dependencies
rm -rf vcpkg
git clone https://gitee.com/kytoo/vcpkg.git
cd vcpkg
7z.exe x installed\x64-windows-static\debug\lib\libprotobufd.zip -oinstalled\x64-windows-static\debug\lib\
7z.exe x installed\x64-windows-static\lib\libprotobuf.rar -oinstalled\x64-windows-static\lib\
cd ..
xcopy vcpkg\installed\x64-windows-static\lib lib\Release\ /s /e /Y
xcopy vcpkg\installed\x64-windows-static\bin ..\_Out\Release\ /s /e /Y
xcopy vcpkg\installed\x64-windows-static\debug\lib lib\Debug\ /s /e /Y
xcopy vcpkg\installed\x64-windows-static\debug\bin ..\_Out\Debug\ /s /e /Y
xcopy vcpkg\installed\x64-windows-static\tools\protobuf\protoc.exe ..\NFComm\NFMessageDefine\ /s /e /Y
cd..