From 37428f48458ba8beb4c5c25811af26b7b1fa57b2 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Tue, 21 Jan 2020 22:33:53 -0800 Subject: [PATCH 1/2] Add vcpkg installation instructions --- docs/source/developers/documentation.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/source/developers/documentation.rst b/docs/source/developers/documentation.rst index d2503b1b007..0a4a8edcf33 100644 --- a/docs/source/developers/documentation.rst +++ b/docs/source/developers/documentation.rst @@ -93,3 +93,20 @@ You can use Docker to build the documentation: make -f Makefile.docker docs The final output is located under ``docs/_build/html``. + +.. _building-vcpkg: + +Building with Vcpkg +------------------- + +You can download and install arrow using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + +.. code-block:: shell + + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + ./vcpkg install arrow + +The arrow 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 bd9483186940ccf393caacfa0989ac954e03005f Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Tue, 21 Jan 2020 22:37:18 -0800 Subject: [PATCH 2/2] fix format --- docs/source/developers/documentation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/developers/documentation.rst b/docs/source/developers/documentation.rst index 0a4a8edcf33..7d1d999462f 100644 --- a/docs/source/developers/documentation.rst +++ b/docs/source/developers/documentation.rst @@ -99,7 +99,7 @@ The final output is located under ``docs/_build/html``. Building with Vcpkg ------------------- -You can download and install arrow using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: +You can download and install arrow using the `vcpkg `_ dependency manager: .. code-block:: shell @@ -109,4 +109,4 @@ You can download and install arrow using the [vcpkg](https://github.com/Microsof ./vcpkg integrate install ./vcpkg install arrow -The arrow 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. +The arrow 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.