mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 20:20:24 +08:00
f4f8bba9d4
* [libfort/libgit2/cli11] update to the latest version * update version * delete useless dependencies * update version
94 lines
1.8 KiB
JSON
94 lines
1.8 KiB
JSON
{
|
|
"name": "libgit2",
|
|
"version-semver": "1.2.0",
|
|
"description": "Git linkable library",
|
|
"homepage": "https://github.com/libgit2/libgit2",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"http-parser",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"default-features": [
|
|
"pcre",
|
|
"ssl"
|
|
],
|
|
"features": {
|
|
"mbedtls": {
|
|
"description": "SSL support (mbedTLS)",
|
|
"dependencies": [
|
|
"mbedtls"
|
|
]
|
|
},
|
|
"openssl": {
|
|
"description": "SSL support (OpenSSL)",
|
|
"dependencies": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"pcre": {
|
|
"description": "Build against external libpcre",
|
|
"dependencies": [
|
|
"pcre"
|
|
]
|
|
},
|
|
"pcre2": {
|
|
"description": "Build against external libpcre2",
|
|
"dependencies": [
|
|
"pcre2"
|
|
]
|
|
},
|
|
"sectransp": {
|
|
"description": "SSL support (sectransp)"
|
|
},
|
|
"ssh": {
|
|
"description": "SSH support via libssh2",
|
|
"dependencies": [
|
|
{
|
|
"name": "libgit2",
|
|
"default-features": false,
|
|
"features": [
|
|
"openssl"
|
|
]
|
|
},
|
|
"libssh2"
|
|
]
|
|
},
|
|
"ssl": {
|
|
"description": "Default SSL backend",
|
|
"dependencies": [
|
|
{
|
|
"name": "libgit2",
|
|
"default-features": false,
|
|
"features": [
|
|
"sectransp"
|
|
],
|
|
"platform": "osx"
|
|
},
|
|
{
|
|
"name": "libgit2",
|
|
"default-features": false,
|
|
"features": [
|
|
"winhttp"
|
|
],
|
|
"platform": "windows"
|
|
},
|
|
{
|
|
"name": "libgit2",
|
|
"default-features": false,
|
|
"features": [
|
|
"openssl"
|
|
],
|
|
"platform": "!windows & !osx"
|
|
}
|
|
]
|
|
},
|
|
"winhttp": {
|
|
"description": "SSL support (WinHTTP)"
|
|
}
|
|
}
|
|
}
|