Add vcpkg installation instructions

This commit is contained in:
Cheney Wang 2022-09-15 11:06:07 +08:00 committed by GitHub
parent f06ac37fc3
commit 2d23cc5c28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -81,3 +81,15 @@ A heartfelt thank-you to [all the nice people](https://github.com/kokke/tiny-AES
All material in this repository is in the public domain.
### Installing from vcpkg
You can download and install `tiny-aes-c` using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager:
```sh
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh #.\bootstrap-vcpkg.bat(for windows)
./vcpkg integrate install
./vcpkg install tiny-aes-c
```
The `tiny-aes-c` port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.