mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 12:09:00 +08:00
8067f8a110
* [azure-sdk-for-cpp] Upgrade vcpkg manifest files * Update version files * vcpkg format-manifest * Update version files * Minor change to re-trigger CI * Undo that minor change * Bump up port-version * Update x-add-version * redo x-add-version without overwrite Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
77 lines
1.7 KiB
JSON
77 lines
1.7 KiB
JSON
{
|
|
"name": "azure-core-cpp",
|
|
"version-semver": "1.0.0-beta.8",
|
|
"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/master/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",
|
|
"dependencies": [
|
|
{
|
|
"name": "azure-core-cpp",
|
|
"default-features": false
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|