mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 17:39:01 +08:00
9555c11202
* libdatachannel port * Fixed various things for pr. * Update to v0.9.2 * Update to 0.9.4 and enable SRTP feature * Add openssl dependency * Fix usrsctp find_library * Flip the sense of the websockets feature and use a manifest instead of CONTROL file. * Need to update libjuice and libdatachannel but there is now a USE_SRTP option. * Update libdatachannel for USE_SRTP Option * Update libdatachannel to v0.10.1 Co-authored-by: Nemirtingas <nanaki89@hotmail.fr> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
27 lines
713 B
JSON
27 lines
713 B
JSON
{
|
|
"name": "libdatachannel",
|
|
"version-string": "v0.10.1",
|
|
"description": "libdatachannel is a standalone implementation of WebRTC Data Channels, WebRTC Media Transport, and WebSockets in C++17 with C bindings for POSIX platforms (including GNU/Linux, Android, and Apple macOS) and Microsoft Windows.",
|
|
"homepage": "https://github.com/paullouisageneau/libdatachannel",
|
|
"dependencies": [
|
|
"libjuice",
|
|
"openssl",
|
|
"plog",
|
|
"usrsctp"
|
|
],
|
|
"default-features": [
|
|
"ws"
|
|
],
|
|
"features": {
|
|
"srtp": {
|
|
"description": "Use Cisco's libSRTP for media transport.",
|
|
"dependencies": [
|
|
"libsrtp"
|
|
]
|
|
},
|
|
"ws": {
|
|
"description": "Web Socket support"
|
|
}
|
|
}
|
|
}
|