vcpkg/ports/libssh/vcpkg.json
Ahmed Yarub Hani Al Nuaimi 45e1df3415
[libssh] Fix Android build (again) (#29577)
* Fix libssh patch for Android

* Update versions

* Update versions
2023-02-13 08:45:40 -08:00

72 lines
1.4 KiB
JSON

{
"name": "libssh",
"version": "0.10.4+20221123",
"port-version": 3,
"description": "libssh is a multiplatform C library implementing the SSHv2 protocol on client and server side",
"homepage": "https://www.libssh.org/",
"license": "LGPL-2.1-only",
"supports": "!uwp",
"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"
]
}
}
}