From a13d03babc574015e417a920968ec966a8fb68f5 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Fri, 24 Feb 2023 22:55:35 +0100 Subject: [PATCH] add conan usage to README (#862) Signed-off-by: Uilian Ries --- README.rst | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index dddf6be..0a6b6bf 100644 --- a/README.rst +++ b/README.rst @@ -49,7 +49,7 @@ Building from Source -------------------- glog supports multiple build systems for compiling the project from -source: `Bazel <#bazel>`__, `CMake <#cmake>`__, and `vcpkg <#vcpkg>`__. +source: `Bazel <#bazel>`__, `CMake <#cmake>`__, `vcpkg <#vcpkg>`__, and `conan <#conan>`__. Bazel ~~~~~ @@ -193,6 +193,22 @@ The glog 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. +conan +~~~~~ + +You can download and install glog using the `conan +`__ package manager: + +.. code:: bash + + pip install conan + conan install -r conancenter glob/@ + +The glog recipe in conan center is kept up to date by conan center index community +contributors. If the version is out of date, please create an +issue or pull request on the `conan-center-index +`__ repository. + User Guide ----------