2020-07-31 13:39:26 +08:00
|
|
|
{
|
|
|
|
"name": "ogre",
|
2020-10-14 04:23:43 +08:00
|
|
|
"version-string": "1.12.9",
|
2021-01-23 04:09:58 +08:00
|
|
|
"port-version": 5,
|
2020-07-31 13:39:26 +08:00
|
|
|
"description": "3D Object-Oriented Graphics Rendering Engine",
|
|
|
|
"homepage": "https://github.com/OGRECave/ogre",
|
|
|
|
"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",
|
|
|
|
"sdl2",
|
2021-01-06 04:07:14 +08:00
|
|
|
"zlib"
|
|
|
|
],
|
|
|
|
"default-features": [
|
|
|
|
"assimp",
|
|
|
|
"freeimage",
|
|
|
|
"overlay",
|
[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
|
|
|
"zziplib"
|
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": {
|
|
|
|
"description": "Use assimp",
|
|
|
|
"dependencies": [
|
|
|
|
"assimp"
|
|
|
|
]
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"csharp": {
|
2020-07-31 13:39:26 +08:00
|
|
|
"description": "Build csharp bindings"
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"d3d9": {
|
[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
|
|
|
"description": "Build Direct3D9 RenderSystem"
|
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"freeimage": {
|
|
|
|
"description": "Build with FreeImage support",
|
|
|
|
"dependencies": [
|
|
|
|
"freeimage"
|
|
|
|
]
|
|
|
|
},
|
2020-09-15 06:07:02 +08:00
|
|
|
"java": {
|
2020-07-31 13:39:26 +08:00
|
|
|
"description": "Build Java (JNI) bindings"
|
|
|
|
},
|
2021-01-06 04:07:14 +08:00
|
|
|
"overlay": {
|
|
|
|
"description": "Build overlay component",
|
|
|
|
"dependencies": [
|
|
|
|
"freetype",
|
|
|
|
{
|
|
|
|
"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",
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"zziplib": {
|
|
|
|
"description": "Build with zziplib support (GPL)",
|
|
|
|
"dependencies": [
|
|
|
|
"zziplib"
|
|
|
|
]
|
2020-07-31 13:39:26 +08:00
|
|
|
}
|
2020-09-15 06:07:02 +08:00
|
|
|
}
|
2020-07-31 13:39:26 +08:00
|
|
|
}
|