vcpkg/ports/libcoro/vcpkg.json

36 lines
696 B
JSON
Raw Normal View History

{
"name": "libcoro",
"version": "0.12.1",
"description": "C++20 coroutine library",
"homepage": "https://github.com/jbaldwin/libcoro",
"license": "Apache-2.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
],
"features": {
"networking": {
"description": "Include networking features.",
2024-03-14 07:42:21 +08:00
"supports": "linux",
"dependencies": [
"c-ares"
]
},
2024-03-14 07:42:21 +08:00
"tls": {
"description": "Include SSL features.",
"dependencies": [
{
"name": "libcoro",
"default-features": false,
"features": [
"networking"
]
},
"openssl"
]
}
}
}