From a49b5cee1dd521aa4b46a6c7379f6e7847ec9ffc Mon Sep 17 00:00:00 2001 From: NancyLi1013 Date: Tue, 11 Feb 2020 23:56:21 -0800 Subject: [PATCH 1/2] Add vcpkg installation instructions --- README | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README b/README index 54b2d213..2b3ba118 100644 --- a/README +++ b/README @@ -12,4 +12,17 @@ autoreconf -vfi ./configure && make && make install +Building enet -use vcpkg + +You can download and install enet using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + vcpkg install enet + +The enet 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. + + From ada6fba63f049eb3c3ce77efbd69a58ebd096cda Mon Sep 17 00:00:00 2001 From: NancyLi1013 Date: Wed, 12 Feb 2020 04:33:01 -0800 Subject: [PATCH 2/2] Update the changes as reviewed --- README | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README b/README index 2b3ba118..cddaf8b4 100644 --- a/README +++ b/README @@ -12,15 +12,15 @@ autoreconf -vfi ./configure && make && make install -Building enet -use vcpkg +# Installing enet(vcpkg) You can download and install enet using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: - git clone https://github.com/Microsoft/vcpkg.git - cd vcpkg - ./bootstrap-vcpkg.sh - ./vcpkg integrate install - vcpkg install enet +git clone https://github.com/Microsoft/vcpkg.git +cd vcpkg +./bootstrap-vcpkg.sh +./vcpkg integrate install +vcpkg install enet The enet 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.