diff options
Diffstat (limited to 'vcpkg/ports/prometheus-cpp/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/prometheus-cpp/vcpkg.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vcpkg/ports/prometheus-cpp/vcpkg.json b/vcpkg/ports/prometheus-cpp/vcpkg.json new file mode 100644 index 0000000..763137f --- /dev/null +++ b/vcpkg/ports/prometheus-cpp/vcpkg.json @@ -0,0 +1,46 @@ +{ + "name": "prometheus-cpp", + "version-semver": "1.3.0", + "description": "Prometheus Client Library for Modern C++", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "compression", + "pull" + ], + "features": { + "compression": { + "description": "Enable zlib compression", + "dependencies": [ + "zlib" + ] + }, + "pull": { + "description": "Support for regular pull mode", + "dependencies": [ + "civetweb" + ] + }, + "push": { + "description": "Support push gateway", + "dependencies": [ + "curl" + ] + }, + "tests": { + "description": "Additional testing support", + "dependencies": [ + "gtest" + ] + } + } +} |