diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/cpp-httplib/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/cpp-httplib/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/cpp-httplib/vcpkg.json | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/vcpkg/ports/cpp-httplib/vcpkg.json b/vcpkg/ports/cpp-httplib/vcpkg.json new file mode 100644 index 0000000..fc113d1 --- /dev/null +++ b/vcpkg/ports/cpp-httplib/vcpkg.json @@ -0,0 +1,47 @@ +{ + "name": "cpp-httplib", + "version": "0.27.0", + "description": "A single file C++11 header-only HTTP/HTTPS server and client library", + "homepage": "https://github.com/yhirose/cpp-httplib", + "license": "MIT", + "supports": "!x86 & !arm32", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "brotli" + ], + "features": { + "brotli": { + "description": "Enables brotli compression support using brotli", + "dependencies": [ + "brotli" + ] + }, + "openssl": { + "description": "Enables HTTPS support using OpenSSL", + "dependencies": [ + "openssl" + ] + }, + "zlib": { + "description": "Enables gzip compression support using zlib", + "dependencies": [ + "zlib" + ] + }, + "zstd": { + "description": "Enables zstd support", + "dependencies": [ + "zstd" + ] + } + } +} |