aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libtcod/vcpkg.json
blob: 67cd611acf982b09490521c113dbf5808c147c67 (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
{
  "name": "libtcod",
  "version-semver": "2.2.1",
  "maintainers": "Kyle Benesch <4b796c65+github@gmail.com>",
  "description": "Common algorithms and tools for roguelikes.",
  "homepage": "https://github.com/libtcod/libtcod",
  "documentation": "https://libtcod.readthedocs.io/en/latest/",
  "license": "BSD-3-Clause",
  "dependencies": [
    "stb",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "png",
    "sdl",
    "unicode",
    "zlib"
  ],
  "features": {
    "png": {
      "description": "Support for reading and writing PNG files.  Required to save screenshots and to load tilesets from files.",
      "dependencies": [
        "lodepng"
      ]
    },
    "sdl": {
      "description": "Support for SDL windows and events with the libtcod context.",
      "dependencies": [
        "sdl3"
      ]
    },
    "threads": {
      "description": "Support for deprecated threading functions.  If in doubt then leave this disabled."
    },
    "unicode": {
      "description": "Support for non-ASCII characters.  Required for text printing functions",
      "dependencies": [
        "utf8proc"
      ]
    },
    "zlib": {
      "description": "Support for REXPaint files and TCODZip archives.",
      "dependencies": [
        "zlib"
      ]
    }
  }
}