Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theirix/conan-libevent
*NOTICE* I maintain more up-to-date package at bincrafters/conan-libevent
https://github.com/theirix/conan-libevent
conan
Last synced: 5 days ago
JSON representation
*NOTICE* I maintain more up-to-date package at bincrafters/conan-libevent
- Host: GitHub
- URL: https://github.com/theirix/conan-libevent
- Owner: theirix
- Created: 2016-07-08T08:08:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-06T09:38:54.000Z (almost 7 years ago)
- Last Synced: 2024-10-30T11:48:26.870Z (about 2 months ago)
- Topics: conan
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/theirix/conan-libevent.svg)](https://travis-ci.org/theirix/conan-libevent)
# conan-libevent
[![badge](https://img.shields.io/badge/conan.io-libevent%2F2.0.22-green.svg?logo=data:image/png;base64%2CiVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAA1VBMVEUAAABhlctjlstkl8tlmMtlmMxlmcxmmcxnmsxpnMxpnM1qnc1sn85voM91oM11oc1xotB2oc56pNF6pNJ2ptJ8ptJ8ptN9ptN8p9N5qNJ9p9N9p9R8qtOBqdSAqtOAqtR%2BrNSCrNJ/rdWDrNWCsNWCsNaJs9eLs9iRvNuVvdyVv9yXwd2Zwt6axN6dxt%2Bfx%2BChyeGiyuGjyuCjyuGly%2BGlzOKmzOGozuKoz%2BKqz%2BOq0OOv1OWw1OWw1eWx1eWy1uay1%2Baz1%2Baz1%2Bez2Oe02Oe12ee22ujUGwH3AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfgBQkREyOxFIh/AAAAiklEQVQI12NgAAMbOwY4sLZ2NtQ1coVKWNvoc/Eq8XDr2wB5Ig62ekza9vaOqpK2TpoMzOxaFtwqZua2Bm4makIM7OzMAjoaCqYuxooSUqJALjs7o4yVpbowvzSUy87KqSwmxQfnsrPISyFzWeWAXCkpMaBVIC4bmCsOdgiUKwh3JojLgAQ4ZCE0AMm2D29tZwe6AAAAAElFTkSuQmCC)](http://www.conan.io/source/libevent/2.0.22/theirix/stable)
[Conan.io](https://conan.io) package for [libevent](https://github.com/libevent/libevent) libraryThe packages generated with this **conanfile** can be found in [conan.io](https://conan.io/source/libevent/2.0.22/theirix/stable).
## Build packages
$ pip install conan_package_tools
$ python build.py
## Upload packages to server$ conan upload libevent/2.0.22@theirix/stable --all
## Reuse the packages### Basic setup
$ conan install libevent/2.0.22@theirix/stable
### Project setupIf you handle multiple dependencies in your project is better to add a *conanfile.txt*
[requires]
libevent/2.0.22@theirix/stable[options]
libevent:shared=true # false
[generators]
txt
cmakeComplete the installation of requirements for your project running:
conan install .
Project setup installs the library (and all his dependencies) and generates the files *conanbuildinfo.txt* and *conanbuildinfo.cmake* with all the paths and variables that you need to link with your dependencies.