You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3156,6 +3156,20 @@ ninja install
3156
3156
3157
3157
This will build and install libc++ into the same install directory where you have clang installed.
3158
3158
3159
+
## Installing from vcpkg
3160
+
3161
+
The cppcoro port in vcpkg is kept up to date by Microsoft team members and community contributors. The url of vcpkg is: https://github.com/Microsoft/vcpkg . You can download and install cppcoro using the vcpkg dependency manager:
3162
+
3163
+
```shell
3164
+
git clone https://github.com/Microsoft/vcpkg.git
3165
+
cd vcpkg
3166
+
./bootstrap-vcpkg.sh # ./bootstrap-vcpkg.bat for Windows
3167
+
./vcpkg integrate install
3168
+
./vcpkg install cppcoro
3169
+
```
3170
+
3171
+
If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
3172
+
3159
3173
# Support
3160
3174
3161
3175
GitHub issues are the primary mechanism for support, bug reports and feature requests.
0 commit comments