Add vcpkg installation instructions

This commit is contained in:
Cheney-Wang 2022-08-31 06:40:46 -07:00 committed by Lewis Baker
parent a87e97fe5b
commit 391215262b
1 changed files with 14 additions and 0 deletions

View File

@ -3156,6 +3156,20 @@ ninja install
This will build and install libc++ into the same install directory where you have clang installed.
## Installing from vcpkg
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:
```shell
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh # ./bootstrap-vcpkg.bat for Windows
./vcpkg integrate install
./vcpkg install cppcoro
```
If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
# Support
GitHub issues are the primary mechanism for support, bug reports and feature requests.