aboutsummaryrefslogtreecommitdiff
path: root/ports/tiff/vcpkg.json
blob: 764fcf55dec36cd4febc3307bbdcbf96df11ba3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "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"
      ]
    }
  }
}