vcpkg/ports/libtcod/vcpkg.json
Kyle Benesch a68d803377
[libtcod] Update to 1.21.0 (#25802)
* STB patch no longer needed.

* Replace deprecated dependency lodepng-c.

* Added 'sdl' and 'threads' features.

Libtcod can now be compiled without linking to SDL2.

Problematic threading functions can be disabled, and are disabled by
default.

* Update to 1.21.0.

Change head ref to 'main'.
2022-07-18 14:12:32 -07:00

36 lines
867 B
JSON

{
"name": "libtcod",
"version": "1.21.0",
"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": [
"lodepng",
"stb",
"utf8proc",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
"zlib"
],
"features": {
"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."
}
}
}