diff options
Diffstat (limited to 'vcpkg/ports/azure-core-cpp/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/azure-core-cpp/vcpkg.json | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/vcpkg/ports/azure-core-cpp/vcpkg.json b/vcpkg/ports/azure-core-cpp/vcpkg.json new file mode 100644 index 0000000..9c8e0c1 --- /dev/null +++ b/vcpkg/ports/azure-core-cpp/vcpkg.json @@ -0,0 +1,82 @@ +{ + "$comment": [ + "NOTE: All changes made to this file will get overwritten by the next port release.", + "Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp." + ], + "name": "azure-core-cpp", + "version-semver": "1.16.1", + "port-version": 1, + "description": [ + "Microsoft Azure Core SDK for C++", + "This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++." + ], + "homepage": "https://github.com/Azure/azure-sdk-for-cpp/tree/main/sdk/core/azure-core", + "license": "MIT", + "dependencies": [ + { + "name": "openssl", + "platform": "!windows & !uwp" + }, + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "http" + ], + "features": { + "curl": { + "description": "Libcurl HTTP transport implementation", + "dependencies": [ + { + "name": "azure-core-cpp", + "default-features": false + }, + { + "name": "curl", + "default-features": false, + "features": [ + "ssl" + ] + } + ] + }, + "http": { + "description": "All HTTP transport implementations available on the platform", + "dependencies": [ + { + "name": "azure-core-cpp", + "default-features": false, + "features": [ + "curl" + ] + }, + { + "name": "azure-core-cpp", + "default-features": false, + "features": [ + "curl", + "winhttp" + ], + "platform": "windows & !uwp" + } + ] + }, + "winhttp": { + "description": "WinHTTP HTTP transport implementation", + "supports": "windows & !uwp", + "dependencies": [ + { + "name": "azure-core-cpp", + "default-features": false + }, + "wil" + ] + } + } +} |