https://github.com/steakhal/conan-prometheus-cpp
Conan.io package for prometheus-cpp library https://github.com/jupp0r/prometheus-cpp
https://github.com/steakhal/conan-prometheus-cpp
conan prometheus prometheus-metrics
Last synced: 7 months ago
JSON representation
Conan.io package for prometheus-cpp library https://github.com/jupp0r/prometheus-cpp
- Host: GitHub
- URL: https://github.com/steakhal/conan-prometheus-cpp
- Owner: steakhal
- License: mit
- Created: 2018-12-15T14:38:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T08:43:29.000Z (almost 6 years ago)
- Last Synced: 2024-11-30T13:59:24.198Z (8 months ago)
- Topics: conan, prometheus, prometheus-metrics
- Language: Python
- Size: 42 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://opensource.org/licenses/MIT)
[](https://travis-ci.org/steakhal/conan-prometheus-cpp)
[](https://ci.appveyor.com/project/steakhal/conan-prometheus-cpp)
[](https://bintray.com/steakhal/conan/prometheus-cpp%3Acivetweb/_latestVersion)# conan-prometheus-cpp
## Basic setup
$ conan install . prometheus-cpp/0.7.0@steakhal/stable -o prometheus-cpp:mode=pull
## Project setupIf you handle multiple dependencies in your project is better to add a *conanfile.txt*
[requires]
prometheus-cpp/0.7.0@steakhal/stable[options]
prometheus-cpp:mode=pull # REQUIRED, you must specify 'pull' xor 'push'
prometheus-cpp:shared=False # default is False
prometheus-cpp:enable_compression=True # default is True
prometheus-cpp:override_cxx_standard_flags=True # default is True
prometheus-cpp:fPIC=True # default is True[generators]
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.cmake* with all the
paths and variables that you need to link with your dependencies.