Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kambala-decapitator/conan-system-libs
Conan recipes to link to system libraries instead of self-built
https://github.com/kambala-decapitator/conan-system-libs
conan conan-recipe
Last synced: 20 days ago
JSON representation
Conan recipes to link to system libraries instead of self-built
- Host: GitHub
- URL: https://github.com/kambala-decapitator/conan-system-libs
- Owner: kambala-decapitator
- License: mit
- Created: 2023-02-27T11:07:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-02-27T11:55:19.000Z (over 1 year ago)
- Last Synced: 2024-10-10T19:22:40.578Z (about 1 month ago)
- Topics: conan, conan-recipe
- Language: Python
- Homepage: https://conan.io/center/
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# conan-system-libs
Conan recipes to link to system libraries instead of self-built. They have only been tested with Conan v1.## Known to work configurations
- Apple platforms (tested macOS/iOS): all recipes
- Android: zlib## Zlib usage example
First, add recipe to your Conan cache:
conan create PATH_TO_THIS_REPO/zlib some_user/some_channel
`PATH_TO_THIS_REPO`, `some_user` and `some_channel` are placeholders.
To consume it, use one of the following possibilities:
- add `self.requires("zlib/1.2.12@some_user/some_channel", override=True)` to `def requirements(self)` method of your `conanfile.py`
- add `zlib/1.2.12@some_user/some_channel` to `[requires]` section of your `conanfile.txt`
- pass `--require-override zlib/1.2.12@some_user/some_channel` on the command line