yuzu/externals/vcpkg/ports/cpr/vcpkg.json

43 lines
826 B
JSON
Raw Normal View History

2022-07-23 05:01:36 +04:00
{
"name": "cpr",
"version-semver": "1.8.3",
"description": "C++ Requests is a simple wrapper around libcurl inspired by the excellent Python Requests project.",
"homepage": "https://github.com/libcpr/cpr",
"license": "MIT",
"dependencies": [
{
"name": "curl",
"default-features": false
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"ssl"
],
"features": {
"ssl": {
"description": "Enable SSL support",
"dependencies": [
{
"name": "curl",
"default-features": false,
"features": [
"ssl"
]
},
{
"name": "openssl",
"platform": "linux"
}
]
}
}
}