mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 15:29:00 +08:00
2a989021bc
* Revise tiff cmake wrapper * x-add-version * Use variables from vcpkg_check_features * x-add-version * Set CMP0012 to allow 'if(ON)' * x-add-version * Restore early call to _find_package * Move wrapper vars to z_vcpkg namespace * Use more common conditional dependency configuration * Don't touch TIFF_LIBRARY * Pass on QUIET option * Update versions
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "tiff",
|
|
"version": "4.3.0",
|
|
"port-version": 2,
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|