2021-03-30 01:11:07 +08:00
|
|
|
{
|
|
|
|
"name": "libtcod",
|
2022-11-11 00:51:12 +08:00
|
|
|
"version": "1.23.1",
|
2021-03-30 01:11:07 +08:00
|
|
|
"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/",
|
2022-05-17 03:41:17 +08:00
|
|
|
"license": "BSD-3-Clause",
|
2021-03-30 01:11:07 +08:00
|
|
|
"dependencies": [
|
|
|
|
"stb",
|
2021-05-07 08:42:04 +08:00
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake",
|
|
|
|
"host": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake-config",
|
|
|
|
"host": true
|
2022-08-26 01:42:47 +08:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"default-features": [
|
|
|
|
"png",
|
|
|
|
"sdl",
|
2022-09-14 07:42:55 +08:00
|
|
|
"unicode",
|
2021-03-30 01:11:07 +08:00
|
|
|
"zlib"
|
2022-07-19 05:12:32 +08:00
|
|
|
],
|
|
|
|
"features": {
|
2022-08-26 01:42:47 +08:00
|
|
|
"png": {
|
|
|
|
"description": "Support for reading and writing PNG files. Required to save screenshots and to load tilesets from files.",
|
|
|
|
"dependencies": [
|
|
|
|
"lodepng"
|
|
|
|
]
|
|
|
|
},
|
2022-07-19 05:12:32 +08:00
|
|
|
"sdl": {
|
2022-11-11 00:51:12 +08:00
|
|
|
"description": "Support for SDL2 windows and events with the libtcod context.",
|
2022-07-19 05:12:32 +08:00
|
|
|
"dependencies": [
|
|
|
|
"sdl2"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"threads": {
|
|
|
|
"description": "Support for deprecated threading functions. If in doubt then leave this disabled."
|
2022-08-26 01:42:47 +08:00
|
|
|
},
|
2022-09-14 07:42:55 +08:00
|
|
|
"unicode": {
|
|
|
|
"description": "Support for non-ASCII characters. Required for text printing functions",
|
|
|
|
"dependencies": [
|
|
|
|
"utf8proc"
|
|
|
|
]
|
|
|
|
},
|
2022-08-26 01:42:47 +08:00
|
|
|
"zlib": {
|
|
|
|
"description": "Support for REXPaint files and TCODZip archives.",
|
|
|
|
"dependencies": [
|
|
|
|
"zlib"
|
|
|
|
]
|
2022-07-19 05:12:32 +08:00
|
|
|
}
|
|
|
|
}
|
2021-03-30 01:11:07 +08:00
|
|
|
}
|