diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/configcat/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/configcat/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/configcat/vcpkg.json | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/vcpkg/ports/configcat/vcpkg.json b/vcpkg/ports/configcat/vcpkg.json new file mode 100644 index 0000000..fe4a8a1 --- /dev/null +++ b/vcpkg/ports/configcat/vcpkg.json @@ -0,0 +1,47 @@ +{ + "name": "configcat", + "version": "4.0.5", + "description": "ConfigCat SDK for C++ provides easy integration for your application to ConfigCat. ConfigCat is a feature flag and configuration management service that lets you separate feature releases from deployments. Alternative to LaunchDarkly.", + "homepage": "https://configcat.com/", + "license": "MIT", + "dependencies": [ + "nlohmann-json", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "z4kn4fein-semver" + ], + "default-features": [ + "network", + "sha" + ], + "features": { + "network": { + "description": "Use curl for network", + "dependencies": [ + { + "name": "curl", + "default-features": false, + "features": [ + "ssl" + ] + }, + { + "name": "openssl", + "platform": "linux" + } + ] + }, + "sha": { + "description": "Use hash-library for SHA calculations", + "dependencies": [ + "hash-library" + ] + } + } +} |