mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 20:01:48 +08:00
40ad15cac1
* Format manifest * Update to 4.3.0 * Revise features and dependencies * Fix pc files * Quote filepath expressions * Switch to port vcpkg-cmake * Use features for vcpkg-cmake-wrapper * [selene] Don't warn/fail on using deprecated types from tiff * x-add-version * Use proper 'version' field * [selene] Format manifest * [selene] Modernize build file * Overwrite version and git-tree * Rebuild * Implement review comment * Overwrite git-tree * Rename cmake wrapper template * Overwrite git-tree
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "tiff",
|
|
"version": "4.3.0",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|