2020-07-31 13:39:26 +08:00
|
|
|
{
|
|
|
|
"name": "ogre",
|
2022-10-14 02:58:22 +08:00
|
|
|
"version": "13.4.4",
|
2022-11-29 07:46:08 +08:00
|
|
|
"port-version": 4,
|
2020-07-31 13:39:26 +08:00
|
|
|
"description": "3D Object-Oriented Graphics Rendering Engine",
|
|
|
|
"homepage": "https://github.com/OGRECave/ogre",
|
2022-02-24 03:57:13 +08:00
|
|
|
"license": "MIT",
|
2020-07-31 13:39:26 +08:00
|
|
|
"dependencies": [
|
[vcpkg format-manifest] Add convert-control flag (#12471)
* [vcpkg format-manifest] initial convert-control attempt
TODO: manifest comments! we should keep $directives
* Finalize x-format-manifest
First, fix Json::parse -- "\c", for any c, was incorrectly parsed.
It would emit the escaped character, and then parse the character, so
that `\b` would give you { '\b', 'b' }.
Second, canonicalize source paragraphs as we're parsing them. This found
an error in qt5 -- The `declarative` feature was listed twice, and we
now catch it, so I removed the second paragraph.
Add PlatformExpression::complexity to allow ordering platform
expressions in a somewhat reasonable way.
Notes:
- We allow `all_modules` as a feature name for back-compat with
paraview
- In order to actually convert CONTROL to vcpkg.json, we'd need to
rename the qt5 `default` feature.
- We need to add support for $directives in x-format-manifest
* fix qt5 port
* format
* fix compile
* fix tests for canonicalization
* Clean up code
* add error message for nothing to format
* add extra_info field
* add `const X&` overloads for `Object::insert[_or_replace]`
* fix compile
* simple CRs
* add tests
* format
* Fix mosquitto port file
also unmerge a line
* fail the tests on malformed manifest
* fix format_all
* fix coroutine port-version
* format manifests
2020-08-03 01:08:07 +08:00
|
|
|
"pugixml",
|
2022-10-14 02:58:22 +08:00
|
|
|
{
|
|
|
|
"name": "sdl2",
|
|
|
|
"platform": "!android"
|
|
|
|
},
|
|
|
|
"stb",
|
2022-01-29 03:19:50 +08:00
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake",
|
|
|
|
"host": true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "vcpkg-cmake-config",
|
|
|
|
"host": true
|
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"zlib"
|
|
|
|
],
|
|
|
|
"default-features": [
|
|
|
|
"assimp",
|
|
|
|
"freeimage",
|
|
|
|
"overlay",
|
2022-10-14 02:58:22 +08:00
|
|
|
"zip"
|
2020-07-31 13:39:26 +08:00
|
|
|
],
|
2020-09-15 06:07:02 +08:00
|
|
|
"features": {
|
2021-01-06 04:07:14 +08:00
|
|
|
"assimp": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Build with assimp support",
|
|
|
|
"dependencies": [
|
|
|
|
"assimp"
|
|
|
|
]
|
2021-01-06 04:07:14 +08:00
|
|
|
},
|
2022-10-17 22:37:49 +08:00
|
|
|
"bullet": {
|
|
|
|
"description": "Build with bullet physics support",
|
|
|
|
"dependencies": [
|
|
|
|
"bullet3"
|
|
|
|
]
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"csharp": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Build csharp bindings",
|
|
|
|
"supports": "!static & !android & !ios & !emscripten"
|
2020-07-31 13:39:26 +08:00
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"d3d9": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Build Direct3D9 RenderSystem",
|
|
|
|
"supports": "windows"
|
[vcpkg format-manifest] Add convert-control flag (#12471)
* [vcpkg format-manifest] initial convert-control attempt
TODO: manifest comments! we should keep $directives
* Finalize x-format-manifest
First, fix Json::parse -- "\c", for any c, was incorrectly parsed.
It would emit the escaped character, and then parse the character, so
that `\b` would give you { '\b', 'b' }.
Second, canonicalize source paragraphs as we're parsing them. This found
an error in qt5 -- The `declarative` feature was listed twice, and we
now catch it, so I removed the second paragraph.
Add PlatformExpression::complexity to allow ordering platform
expressions in a somewhat reasonable way.
Notes:
- We allow `all_modules` as a feature name for back-compat with
paraview
- In order to actually convert CONTROL to vcpkg.json, we'd need to
rename the qt5 `default` feature.
- We need to add support for $directives in x-format-manifest
* fix qt5 port
* format
* fix compile
* fix tests for canonicalization
* Clean up code
* add error message for nothing to format
* add extra_info field
* add `const X&` overloads for `Object::insert[_or_replace]`
* fix compile
* simple CRs
* add tests
* format
* Fix mosquitto port file
also unmerge a line
* fail the tests on malformed manifest
* fix format_all
* fix coroutine port-version
* format manifests
2020-08-03 01:08:07 +08:00
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"freeimage": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Build with FreeImage support (no effect for Emscripten)",
|
2021-01-06 04:07:14 +08:00
|
|
|
"dependencies": [
|
2022-10-14 02:58:22 +08:00
|
|
|
{
|
|
|
|
"name": "freeimage",
|
|
|
|
"platform": "!emscripten"
|
|
|
|
}
|
2021-01-06 04:07:14 +08:00
|
|
|
]
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"java": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Build Java (JNI) bindings",
|
|
|
|
"supports": "!static & !android & !ios & !emscripten"
|
|
|
|
},
|
|
|
|
"openexr": {
|
|
|
|
"description": "Build with OpenEXR support",
|
|
|
|
"dependencies": [
|
|
|
|
"openexr"
|
|
|
|
]
|
2020-07-31 13:39:26 +08:00
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"overlay": {
|
|
|
|
"description": "Build overlay component",
|
|
|
|
"dependencies": [
|
2022-10-14 02:58:22 +08:00
|
|
|
{
|
|
|
|
"name": "freetype",
|
|
|
|
"default-features": false
|
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
{
|
|
|
|
"name": "imgui",
|
|
|
|
"features": [
|
|
|
|
"freetype"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"python": {
|
2020-07-31 13:39:26 +08:00
|
|
|
"description": "Build Python bindings",
|
2022-10-14 02:58:22 +08:00
|
|
|
"supports": "!static & !android & !ios & !emscripten",
|
2020-07-31 13:39:26 +08:00
|
|
|
"dependencies": [
|
|
|
|
"python3"
|
|
|
|
]
|
2021-01-06 04:07:14 +08:00
|
|
|
},
|
|
|
|
"strict": {
|
|
|
|
"description": "Force Ogre resource manager to be strict with group names and resource names"
|
|
|
|
},
|
2022-10-14 02:58:22 +08:00
|
|
|
"tools": {
|
|
|
|
"description": "Build tools",
|
|
|
|
"supports": "!android & !emscripten"
|
|
|
|
},
|
|
|
|
"zip": {
|
|
|
|
"description": "Build ZIP archive support"
|
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"zziplib": {
|
2022-10-14 02:58:22 +08:00
|
|
|
"description": "Obsolete, use zip feature instead",
|
2021-01-06 04:07:14 +08:00
|
|
|
"dependencies": [
|
2022-10-14 02:58:22 +08:00
|
|
|
{
|
|
|
|
"name": "ogre",
|
|
|
|
"default-features": false,
|
|
|
|
"features": [
|
|
|
|
"zip"
|
|
|
|
]
|
|
|
|
}
|
2021-01-06 04:07:14 +08:00
|
|
|
]
|
2020-07-31 13:39:26 +08:00
|
|
|
}
|
2020-09-15 06:07:02 +08:00
|
|
|
}
|
2020-07-31 13:39:26 +08:00
|
|
|
}
|