From 9546b1ff0ee243da2db7b26cd565611e3c0c2cc4 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Thu, 1 Sep 2022 02:23:42 -0700 Subject: [PATCH 1/2] Add vcpkg installation instructions --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 93364118b7..aa9745dc59 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,19 @@ ctest -R path.to.file # Runs the program as a test > file to which a target is associated (like a test or an example), you can > then compile it by pressing ⌘B, or compile and then run it using ⇧⌘B. +## Installing LuaBridge (vcpkg) + +Alternatively, you can build and install hana using [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager: + +```sh or powershell +git clone https://github.com/Microsoft/vcpkg.git +cd vcpkg +./bootstrap-vcpkg.sh +./vcpkg integrate install +./vcpkg install hana +``` + +The hana 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. ## Project organization The project is organized in a couple of subdirectories. From a7ef5688eefacf1efde947f9c544c748dcae3f06 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Thu, 1 Sep 2022 02:25:54 -0700 Subject: [PATCH 2/2] correct port name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa9745dc59..d3761c10a9 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ git clone https://github.com/Microsoft/vcpkg.git cd vcpkg ./bootstrap-vcpkg.sh ./vcpkg integrate install -./vcpkg install hana +./vcpkg install boost-hana ``` The hana 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.