Skip to content

Commit 3d293b4

Browse files
committed
Documentation: Add a guide to building
1 parent 01e296d commit 3d293b4

2 files changed

Lines changed: 31 additions & 3 deletions

File tree

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,22 @@ MouseClickDrag, Left, 5, 5, 150, 50</pre></td>
5959
</tbody>
6060
</table>
6161

62-
## Download
62+
## Downloading
6363
[Releases](../../releases)
6464

6565
## See Also
66-
* [IbLogiSoftExt](https://github.com/Chaoses-Ib/IbLogiSoftExt)
66+
* [IbLogiSoftExt](https://github.com/Chaoses-Ib/IbLogiSoftExt)
67+
68+
## For Developers
69+
### Building
70+
1. Put [IbWinCppLib](https://github.com/Chaoses-Ib/IbWinCppLib/tree/master/WinCppLib/IbWinCppLib) in `C:\L\C++\packages` (in other locations you need to modify the .vcxproj files).
71+
1. [vcpkg](https://github.com/microsoft/vcpkg)
72+
```
73+
set VCPKG_DEFAULT_TRIPLET=x64-windows-static-md
74+
vcpkg install detours rapidjson
75+
```
76+
For Test project you also need:
77+
```
78+
vcpkg install boost-test fmt
79+
```
80+
Change VCPKG_DEFAULT_TRIPLET to x86-windows-static-md if you need x86 version.

README.zh-Hans.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,18 @@ MouseClickDrag, Left, 5, 5, 150, 50</pre></td>
6161
[Releases](../../releases)
6262

6363
## 相关推荐
64-
* [IbLogiSoftExt](https://github.com/Chaoses-Ib/IbLogiSoftExt)
64+
* [IbLogiSoftExt](https://github.com/Chaoses-Ib/IbLogiSoftExt)
65+
66+
## 开发者
67+
### 构建
68+
1.[IbWinCppLib](https://github.com/Chaoses-Ib/IbWinCppLib/tree/master/WinCppLib/IbWinCppLib) 放入 `C:\L\C++\packages`(其它位置需要修改 .vcxproj 文件)。
69+
1. [vcpkg](https://github.com/microsoft/vcpkg)
70+
```
71+
set VCPKG_DEFAULT_TRIPLET=x64-windows-static-md
72+
vcpkg install detours rapidjson
73+
```
74+
Test 项目还需要:
75+
```
76+
vcpkg install boost-test fmt
77+
```
78+
如果需要 x86 版本就把 VCPKG_DEFAULT_TRIPLET 改为 x86-windows-static-md。

0 commit comments

Comments
 (0)