diff options
Diffstat (limited to 'vcpkg/ports/librdkafka/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/librdkafka/vcpkg.json | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/vcpkg/ports/librdkafka/vcpkg.json b/vcpkg/ports/librdkafka/vcpkg.json new file mode 100644 index 0000000..c55196b --- /dev/null +++ b/vcpkg/ports/librdkafka/vcpkg.json @@ -0,0 +1,51 @@ +{ + "name": "librdkafka", + "version": "2.12.0", + "description": "The Apache Kafka C/C++ library", + "homepage": "https://github.com/confluentinc/librdkafka", + "license": null, + "supports": "!uwp", + "dependencies": [ + "lz4", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "curl": { + "description": "Build with curl", + "dependencies": [ + "curl" + ] + }, + "sasl": { + "description": "Build with sasl/gssapi", + "dependencies": [ + "cyrus-sasl" + ] + }, + "ssl": { + "description": "Build with OpenSSL", + "dependencies": [ + "openssl" + ] + }, + "zlib": { + "description": "Build with zlib", + "dependencies": [ + "zlib" + ] + }, + "zstd": { + "description": "Build with zstd", + "dependencies": [ + "zstd" + ] + } + } +} |