vcpkg/ports/tiff/vcpkg.json
Thomas Willecomme d54131d520
[libtiff] Switch to vcpkg_from_gitlab function (#22181)
Gitlab tends to be more reliable for some customers.

Co-authored-by: Thomas Willecomme <thomas.willecomme@teledyne.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-12-29 11:28:03 -08:00

57 lines
1.2 KiB
JSON

{
"name": "tiff",
"version": "4.3.0",
"port-version": 3,
"description": "A library that supports the manipulation of TIFF image files",
"homepage": "https://libtiff.gitlab.io/libtiff/",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
],
"default-features": [
"jpeg",
"lzma",
"zip"
],
"features": {
"cxx": {
"description": "Build C++ libtiffxx library"
},
"jpeg": {
"description": "Support JPEG compression in TIFF image files",
"dependencies": [
"libjpeg-turbo"
]
},
"lzma": {
"description": "Support LZMA compression in TIFF image files",
"dependencies": [
"liblzma"
]
},
"tools": {
"description": "Build tools"
},
"webp": {
"description": "Support WEBP compression in TIFF image files",
"dependencies": [
"libwebp"
]
},
"zip": {
"description": "Support ZIP/deflate compression in TIFF image files",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Support ZSTD compression in TIFF image files",
"dependencies": [
"zstd"
]
}
}
}