diff options
Diffstat (limited to 'vcpkg/ports/libdeflate/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libdeflate/vcpkg.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/vcpkg/ports/libdeflate/vcpkg.json b/vcpkg/ports/libdeflate/vcpkg.json new file mode 100644 index 0000000..7e987d5 --- /dev/null +++ b/vcpkg/ports/libdeflate/vcpkg.json @@ -0,0 +1,37 @@ +{ + "name": "libdeflate", + "version": "1.25", + "description": "libdeflate is a library for fast, whole-buffer DEFLATE-based compression and decompression.", + "homepage": "https://github.com/ebiggers/libdeflate", + "license": "MIT", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "compression", + "decompression", + "gzip", + "zlib" + ], + "features": { + "compression": { + "description": "Support compression" + }, + "decompression": { + "description": "Support decompression" + }, + "gzip": { + "description": "Support the gzip format" + }, + "zlib": { + "description": "Support the zlib format" + } + } +} |