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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{
"name": "ogre",
"version-string": "1.12.9",
"port-version": 5,
"description": "3D Object-Oriented Graphics Rendering Engine",
"homepage": "https://github.com/OGRECave/ogre",
"dependencies": [
"pugixml",
"sdl2",
"zlib"
],
"default-features": [
"assimp",
"freeimage",
"overlay",
"zziplib"
],
"features": {
"assimp": {
"description": "Use assimp",
"dependencies": [
"assimp"
]
},
"csharp": {
"description": "Build csharp bindings"
},
"d3d9": {
"description": "Build Direct3D9 RenderSystem"
},
"freeimage": {
"description": "Build with FreeImage support",
"dependencies": [
"freeimage"
]
},
"java": {
"description": "Build Java (JNI) bindings"
},
"overlay": {
"description": "Build overlay component",
"dependencies": [
"freetype",
{
"name": "imgui",
"features": [
"freetype"
]
}
]
},
"python": {
"description": "Build Python bindings",
"dependencies": [
"python3"
]
},
"strict": {
"description": "Force Ogre resource manager to be strict with group names and resource names"
},
"zziplib": {
"description": "Build with zziplib support (GPL)",
"dependencies": [
"zziplib"
]
}
}
}
|