vcpkg/ports/usockets/vcpkg.json
Kai Pastor fb5d36bcad
[winsock2,usocket] Fix mingw build (#25079)
* winsocks2 is empty package on mingw

* Fix usocket build on mingw

* Update versions

* Add license fields

* Update versions

* Update versions
2022-07-28 12:21:06 -07:00

37 lines
780 B
JSON

{
"name": "usockets",
"version": "0.8.1",
"port-version": 2,
"description": "Miniscule cross-platform eventing, networking & crypto for async applications",
"homepage": "https://github.com/uNetworking/uSockets",
"license": "Apache-2.0",
"dependencies": [
"libuv",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"event": {
"description": "Build usockets with epoll support"
},
"network": {
"description": "Build usockets with winsock support",
"dependencies": [
"winsock2"
]
},
"ssl": {
"description": "Build usockets with openssl support",
"dependencies": [
"openssl"
]
}
}
}