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
|
{
"name": "tgui",
"version-date": "2021-04-19",
"port-version": 2,
"description": "TGUI is an easy to use, cross-platform, C++ GUI for SFML.",
"homepage": "https://tgui.eu",
"default-features": [
"sdl2",
"sfml"
],
"features": {
"sdl2": {
"description": "build the SDL backend",
"dependencies": [
"sdl2",
"sdl2-ttf"
]
},
"sfml": {
"description": "build the SFML backend",
"dependencies": [
{
"name": "glad",
"features": [
"egl"
],
"platform": "!android & !ios"
},
{
"name": "opengl",
"platform": "android | ios"
},
"sfml",
"stb"
]
},
"tool": {
"description": "Build GUI builder",
"dependencies": [
{
"name": "tgui",
"features": [
"sdl2",
"sfml"
]
}
]
}
}
}
|