From 5535e4946b88b4a53f412f1e2fdb9d2193d331a5 Mon Sep 17 00:00:00 2001 From: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com> Date: Tue, 31 Mar 2020 01:12:01 -0700 Subject: [PATCH 1/2] Add vcpkg installation instructions --- doc/installation.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/installation.html b/doc/installation.html index 28a9fbb..cc05f6f 100644 --- a/doc/installation.html +++ b/doc/installation.html @@ -79,6 +79,21 @@ distribution directory structure:

would be replaced by core.so.

+

+Alternatively, you can build and install LuaSocket using vcpkg dependency manager: + +

+git clone https://github.com/Microsoft/vcpkg.git
+cd vcpkg
+./bootstrap-vcpkg.sh
+./vcpkg integrate install
+./vcpkg install luasocket
+
+ +The luasocket 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 on the vcpkg repository. + +

Using LuaSocket

With the above setup, and an interpreter with shared library support, From 51dbaad50db25face029af6224b82c270d93b76d Mon Sep 17 00:00:00 2001 From: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com> Date: Thu, 9 Nov 2023 23:45:32 -0800 Subject: [PATCH 2/2] Update the instructions --- docs/installation.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/installation.html b/docs/installation.html index 179d21b..88f6425 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -83,10 +83,6 @@ would be replaced by core.so. Alternatively, you can build and install LuaSocket using vcpkg dependency manager:

-git clone https://github.com/Microsoft/vcpkg.git
-cd vcpkg
-./bootstrap-vcpkg.sh
-./vcpkg integrate install
 ./vcpkg install luasocket