From cc8246f3aaa46eee525565c7d4158d3c59a345ca Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Sat, 12 Dec 2020 13:06:49 -0500 Subject: [PATCH] conan: add page (#5008) --- pages/common/conan.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/conan.md diff --git a/pages/common/conan.md b/pages/common/conan.md new file mode 100644 index 0000000000..ed5f36f783 --- /dev/null +++ b/pages/common/conan.md @@ -0,0 +1,28 @@ +# conan + +> The open source, decentralized and multi-platform package manager to create and share all your native binaries. +> More information: . + +- Install packages based on conanfile.txt: + +`conan install {{.}}` + +- Install packages and create configuation files for a specific generator: + +`conan install -g {{generator}}` + +- Install packages, building from source: + +`conan install {{.}} --build` + +- Search for locally installed packages: + +`conan search {{package}}` + +- Search for remote packages: + +`conan search {{package}} -r {{remote}}` + +- List remotes: + +`conan remote --list`