mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 12:39:01 +08:00
3a68454afa
* [libgit2] Add Exported CMake Targets * update version * update version * Remove no longer applicable comment. Co-authored-by: Lily Wang <v-lilywang@microsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
99 lines
1.9 KiB
JSON
99 lines
1.9 KiB
JSON
{
|
|
"name": "libgit2",
|
|
"version-semver": "1.3.0",
|
|
"port-version": 2,
|
|
"description": "Git linkable library",
|
|
"homepage": "https://github.com/libgit2/libgit2",
|
|
"supports": "!uwp",
|
|
"dependencies": [
|
|
"http-parser",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"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)"
|
|
}
|
|
}
|
|
}
|