From 6604d3fa7df7d5865df47f905cc0fcf14ae87750 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Fri, 9 Sep 2022 00:32:06 -0700 Subject: [PATCH 1/3] Add vcpkg installation instructions --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 16ad70e..e99efba 100644 --- a/README.md +++ b/README.md @@ -176,6 +176,13 @@ Build steps: - cmake .. - sudo make -j4 install +3. Build cppzmq via [vcpkg](https://github.com/Microsoft/vcpkg/). This does an out of source build and installs the build files + - git clone https://github.com/Microsoft/vcpkg.git + - cd vcpkg + - ./bootstrap-vcpkg.sh + - ./vcpkg integrate install + - ./vcpkg install cmark + Using this: A cmake find package scripts is provided for you to easily include this library. From 6798618a9d16bb2fa63ff23a3b67e00d20a665d7 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Tue, 13 Sep 2022 23:26:54 -0700 Subject: [PATCH 2/3] Complete the script name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e99efba..b356f7e 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ Build steps: 3. Build cppzmq via [vcpkg](https://github.com/Microsoft/vcpkg/). This does an out of source build and installs the build files - git clone https://github.com/Microsoft/vcpkg.git - cd vcpkg - - ./bootstrap-vcpkg.sh + - ./bootstrap-vcpkg.sh # bootstrap-vcpkg.bat for Powershell - ./vcpkg integrate install - ./vcpkg install cmark From 7d68f822217a2ab7f9364d455321a66ffd4d53c3 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Mon, 19 Sep 2022 23:20:36 -0700 Subject: [PATCH 3/3] correct name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b356f7e..e2bea0b 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ Build steps: - cd vcpkg - ./bootstrap-vcpkg.sh # bootstrap-vcpkg.bat for Powershell - ./vcpkg integrate install - - ./vcpkg install cmark + - ./vcpkg install cppzmq Using this: