vcpkg/ports/libwebp/vcpkg.json
Kai Pastor 99346bb692
[libwebp] Update, cleanup (#23864)
* Update to v1.2.2

* Fix libwebpmux Windows name breakage

The pc file relies on the original output name:
No 'lib' prefix for MSVC. No 'liblib' prefix for mingw.

* Minor portfile updates

* Don't self-depend on default features

* Fix the libwebpmux feature

* Fix internal tool dependencies

* Drop Xrandr patch (fixed in freeglut)

* Drop X11 patch (fixed in freeglut)

* Cleanup CMake config patch, no extra case hacks

* Adjust webp lib names in skia, qt5-imageformats

* Adjust downstream WEBP cmake usage

* Debug qtimageformats [skip actions]

* [tiff] Drive-by fix for CMake warning

* Drop non-standard debug postfix

* Update indentation

* Update port versions

* Update versions

* Revert qtimageformat debug change

* Fixup qt5-imageformats change

* Update versions
2022-04-13 11:26:56 -07:00

197 lines
4.1 KiB
JSON

{
"name": "libwebp",
"version": "1.2.2",
"description": "WebP codec: library to encode and decode images in WebP format",
"homepage": "https://github.com/webmproject/libwebp",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"unicode"
],
"platform": "windows"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"libwebpmux",
"nearlossless",
"simd"
],
"features": {
"all": {
"description": "enable all features except for swap16bitcsp",
"dependencies": [
{
"name": "libwebp",
"features": [
"anim",
"cwebp",
"dwebp",
"gif2webp",
"img2webp",
"info",
"libwebpmux",
"mux",
"nearlossless",
"simd"
]
},
{
"name": "libwebp",
"features": [
"extras"
],
"platform": "!osx"
},
{
"name": "libwebp",
"features": [
"vwebp-sdl"
],
"platform": "!osx"
}
]
},
"anim": {
"description": "Build animation utilities.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"img2webp",
"mux"
]
}
]
},
"cwebp": {
"description": "Build the cwebp command line tool."
},
"dwebp": {
"description": "Build the dwebp command line tool."
},
"extras": {
"description": "Build extras.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"vwebp"
]
},
{
"name": "sdl1",
"platform": "windows"
}
]
},
"gif2webp": {
"description": "Build the gif2webp conversion tool.",
"dependencies": [
"giflib",
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"img2webp": {
"description": "Build the img2webp animation tool.",
"dependencies": [
"libjpeg-turbo",
"libpng",
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
},
"tiff"
]
},
"info": {
"description": "Build the webpinfo command line tool."
},
"libbwebpmux": {
"description": "Obsolete, use feature libwebpmux instead.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"libwebpmux": {
"description": "Build the libwebpmux library"
},
"mux": {
"description": "Build the webpmux command line tool.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"libwebpmux"
]
}
]
},
"nearlossless": {
"description": "Enable near-lossless encoding"
},
"simd": {
"description": "Enable any SIMD optimization."
},
"swap16bitcsp": {
"description": "Enable byte swap for 16 bit colorspaces."
},
"unicode": {
"description": "Build Unicode executables. (Adds definition UNICODE and _UNICODE)"
},
"vwebp": {
"description": "Build the vwebp viewer tool.",
"dependencies": [
{
"name": "freeglut",
"platform": "!osx"
},
"opengl"
]
},
"vwebp-sdl": {
"description": "Build the vwebp viewer tool.",
"dependencies": [
{
"name": "libwebp",
"default-features": false,
"features": [
"vwebp"
]
},
{
"name": "sdl1",
"platform": "windows"
}
]
}
}
}