vcpkg/ports/libssh/vcpkg.json
Ahmed Yarub Hani Al Nuaimi 30465138ef
Disable libssh symbol versioning (#21577)
* Disable libssh symbol versioning

* Update versions

* Update versions

* update version

Co-authored-by: Ahmed Yarub Hani Al Nuaimi <ahmed.alnuaimi@zwift.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-11-22 21:08:37 -08:00

71 lines
1.4 KiB
JSON

{
"name": "libssh",
"version": "0.9.6",
"port-version": 1,
"description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
"homepage": "https://www.libssh.org/",
"supports": "!(uwp | arm)",
"dependencies": [
{
"name": "libssh",
"default-features": false,
"features": [
"mbedtls"
],
"platform": "android"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"crypto"
],
"features": {
"crypto": {
"description": "Default crypto backend",
"dependencies": [
{
"name": "libssh",
"features": [
"mbedtls"
]
}
]
},
"mbedtls": {
"description": "Crypto support (mbedTLS)",
"dependencies": [
{
"name": "mbedtls",
"default-features": false
},
{
"name": "mbedtls",
"features": [
"pthreads"
],
"platform": "!android"
}
]
},
"openssl": {
"description": "Crypto support (OpenSSL)",
"dependencies": [
"openssl"
]
},
"zlib": {
"description": "libssh with zlib",
"dependencies": [
"zlib"
]
}
}
}