mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 01:01:52 +08:00
b8b8efa56d
* 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>
51 lines
1.2 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|