diff options
Diffstat (limited to 'vcpkg/ports/mongo-c-driver/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/mongo-c-driver/vcpkg.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/vcpkg/ports/mongo-c-driver/vcpkg.json b/vcpkg/ports/mongo-c-driver/vcpkg.json new file mode 100644 index 0000000..5ef37de --- /dev/null +++ b/vcpkg/ports/mongo-c-driver/vcpkg.json @@ -0,0 +1,48 @@ +{ + "name": "mongo-c-driver", + "version": "1.30.6", + "description": "Client library written in C for MongoDB.", + "homepage": "https://github.com/mongodb/mongo-c-driver", + "license": "Apache-2.0", + "supports": "!uwp", + "dependencies": [ + "libbson", + { + "name": "mongo-c-driver", + "features": [ + "openssl" + ], + "platform": "!windows & !osx & !ios" + }, + "utf8proc", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "zlib" + ], + "features": { + "openssl": { + "description": "Use OpenSSL (even on Windows or Apple systems)", + "dependencies": [ + "openssl" + ] + }, + "snappy": { + "description": "Enables snappy compressor support", + "dependencies": [ + "snappy" + ] + }, + "zstd": { + "description": "Enables zstd compressor support", + "dependencies": [ + "zstd" + ] + } + } +} |