vcpkg/ports/seasocks/vcpkg.json
chausner 0d906bd5c0
[seasocks] New port (#33385)
* Add seasocks 1.4.5

* Update CI baseline

* Add patch to fix x86 build

See https://github.com/mattgodbolt/seasocks/pull/192

* Update CI baseline

* Add supports attribute

* Update CI baseline

* Disable Windows due to https://github.com/mattgodbolt/seasocks/pull/193

* Update CI baseline

---------

Co-authored-by: chausner <chausner@users.noreply.github.com>
2023-09-01 11:38:27 -07:00

30 lines
602 B
JSON

{
"name": "seasocks",
"version": "1.4.5",
"description": "Simple, small, C++ embeddable webserver with WebSockets support",
"homepage": "https://github.com/mattgodbolt/seasocks",
"license": "BSD-2-Clause",
"supports": "!windows & !osx & !android",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"zlib"
],
"features": {
"zlib": {
"description": "Build with Deflate support via zlib",
"dependencies": [
"zlib"
]
}
}
}