vcpkg/ports/libtcod/vcpkg.json
Kyle Benesch b8b8efa56d
[libtcod] Update to 1.22.1 (#26504)
* Update to 1.22.0.

* Add png and zlib features, enabled by default.

Adds missing default features.

* Update to 1.22.1.

* Update versions/l-/libtcod.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2022-08-25 10:42:47 -07:00

51 lines
1.2 KiB
JSON

{
"name": "libtcod",
"version": "1.22.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",
"utf8proc",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"png",
"sdl",
"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 SDL2 windows and events including OpenGL support and the libtcod context.",
"dependencies": [
"glad",
"sdl2"
]
},
"threads": {
"description": "Support for deprecated threading functions. If in doubt then leave this disabled."
},
"zlib": {
"description": "Support for REXPaint files and TCODZip archives.",
"dependencies": [
"zlib"
]
}
}
}