-
Notifications
You must be signed in to change notification settings - Fork 133
Add Conan install section in README #106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Uilian Ries <uilianries@gmail.com>
@uilianries I would recommend including a minimal
The plain Or maybe link to https://docs.conan.io/2/tutorial/consuming_packages/build_simple_cmake_project.html and simply mention that you can include |
I would prefer not:
|
Actually, I think a simple link to https://conan.io/center/recipes/poselib or a |
I think it would be nice to add the badge. |
Signed-off-by: Uilian Ries <uilianries@gmail.com>
Done, Conan badge has been added on the top of the README.md |
thanks! |
@uilianries @valgur how do we update the version to 2.0.5 of the conan package? It seems that the BrewTestBot is working but I don't see a new version. |
@pablospe Hello! There is a documented process in the ConanCenterIndex repository: https://github.com/conan-io/conan-center-index/blob/master/docs/bump_version.md In summary, you can open a PR directly. Regards! |
So just add 2.0.5 in https://github.com/conan-io/conan-center-index/blob/master/recipes%2Fposelib%2Fconfig.yml and conandata.yml and PR? |
And update the https://github.com/conan-io/conan-center-index/blob/master/recipes/poselib/all/conandata.yml with that new version and its URL + SHA256 |
@pablospe made a PR |
@pablospe My naive PR (conan-io/conan-center-index#28279) fails due to some ad-hoc stuff in conanfile.py#L86. |
Hello!
As asked in the comment #103 (comment), this PR brings the steps of installation for PoseLib, when using Conan.
I did not add how to install/configure Conan, because the embedded links has the content already, and it will avoid polluting the README file.
Currently, the version 2.0.3 is the latest available in Conan Center: https://conan.io/center/recipes/poselib?version=2.0.3
There is a PR in ConanCenterIndex including the version 2.0.4, as well: conan-io/conan-center-index#24841
The command
conan install --requires="poselib/[*]" --build=missing
means:Regards!