Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T08:43:29.000Z (over 5 years ago)
- Last Synced: 2024-11-30T13:59:24.198Z (about 1 month 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
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://travis-ci.org/steakhal/conan-prometheus-cpp.svg)](https://travis-ci.org/steakhal/conan-prometheus-cpp)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/steakhal/conan-prometheus-cpp)](https://ci.appveyor.com/project/steakhal/conan-prometheus-cpp)
[![Download](https://api.bintray.com/packages/steakhal/conan/prometheus-cpp%3Acivetweb/images/download.svg)](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.