mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 14:59:05 +08:00
0fec1340eb
* [vcpkg docs] add docs for manifest files These are just for the maintainer docs, not user docs. * [vcpkg] EBNF-ify platform expression parsing this modifies nothing about what strings are accepted or rejected, it just moves stuff around. also adds tests. * [vcpkg docs] add manifest mode example * [wip] docs for augustin also fix tabs * [vcpkg manifest] switch to using maps for features * Apply suggestions from code review * un-experimentize format-manifest * flesh out the user manifest mode docs * CRs * billy CRs * final personal pass-thru
38 lines
710 B
JSON
38 lines
710 B
JSON
{
|
|
"name": "ogre",
|
|
"version-string": "1.12.7",
|
|
"description": "3D Object-Oriented Graphics Rendering Engine",
|
|
"homepage": "https://github.com/OGRECave/ogre",
|
|
"dependencies": [
|
|
"freeimage",
|
|
"freetype",
|
|
{
|
|
"name": "imgui",
|
|
"features": [
|
|
"freetype"
|
|
]
|
|
},
|
|
"pugixml",
|
|
"sdl2",
|
|
"zlib",
|
|
"zziplib"
|
|
],
|
|
"features": {
|
|
"csharp": {
|
|
"description": "Build csharp bindings"
|
|
},
|
|
"d3d9": {
|
|
"description": "Build Direct3D9 RenderSystem"
|
|
},
|
|
"java": {
|
|
"description": "Build Java (JNI) bindings"
|
|
},
|
|
"python": {
|
|
"description": "Build Python bindings",
|
|
"dependencies": [
|
|
"python3"
|
|
]
|
|
}
|
|
}
|
|
}
|