vcpkg/ports/embree3/vcpkg.json
Andréa Machizaud 92eb70e1d6
[embree3] Remove explicit ISA selection and expose more project options as features (#35929)
<!-- If your PR fixes issues, please note that here by adding "Fixes
#NNNNNN." for each fixed issue on separate lines. -->

<!-- If you are still working on the PR, open it as a Draft:
https://github.blog/2019-02-14-introducing-draft-pull-requests/ -->

If this PR updates an existing port, please uncomment and fill out this
checklist:

- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md)
- [x] SHA512s are updated for each updated download
- [x] The "supports" clause reflects platforms that may be fixed by this
new version
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
2024-03-07 10:02:46 -08:00

80 lines
1.9 KiB
JSON

{
"name": "embree3",
"version": "3.13.5",
"port-version": 3,
"description": "High Performance Ray Tracing Kernels.",
"homepage": "https://github.com/embree/embree",
"license": "Apache-2.0",
"supports": "!arm | osx",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"filter-function",
"geometry-curve",
"geometry-grid",
"geometry-instance",
"geometry-point",
"geometry-quad",
"geometry-subdivision",
"geometry-triangle",
"geometry-user",
"ray-packets",
"tasking-tbb"
],
"features": {
"backface-culling": {
"description": "Enables backface culling."
},
"compact-polys": {
"description": "Enables double indexed poly layout."
},
"filter-function": {
"description": "Enables filter functions."
},
"geometry-curve": {
"description": "Enables support for curve geometries."
},
"geometry-grid": {
"description": "Enables support for grid geometries."
},
"geometry-instance": {
"description": "Enables support for instances."
},
"geometry-point": {
"description": "Enables support for point geometries."
},
"geometry-quad": {
"description": "Enables support for quad geometries."
},
"geometry-subdivision": {
"description": "Enables support for subdiv geometries."
},
"geometry-triangle": {
"description": "Enables support for triangle geometries."
},
"geometry-user": {
"description": "Enables support for user geometries."
},
"ray-mask": {
"description": "Enables ray mask support."
},
"ray-packets": {
"description": "Enabled support for ray packets."
},
"tasking-tbb": {
"description": "Use oneTBB as task system.",
"dependencies": [
"tbb"
]
}
}
}