From d4c4ede16c5345391f43b94ea7bd49e973ffdb06 Mon Sep 17 00:00:00 2001 From: Lily Wang <494550702@qq.com> Date: Fri, 9 Sep 2022 00:00:55 -0700 Subject: [PATCH] Add vcpkg installation instructions --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index dbb80cde64..3c4157f15d 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,20 @@ Usage of the .bat script: `AutoBuildForWindows.bat ARM64-Release-ASM` for arm64 release build for more usage, please refer to the .bat script help. +Building openh264 from vcpkg +------------------- +The openh264 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 openh264 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 openh264 +``` + +If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. + For All Platforms -------------------