vcpkg/ports/blend2d/vcpkg.json
nicole mazzuca 0fec1340eb
[vcpkg manifest] Add documentation! (#13488)
* [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
2020-09-14 15:07:02 -07:00

25 lines
740 B
JSON

{
"name": "blend2d",
"version-string": "beta_2020-08-24",
"description": "Beta 2D Vector Graphics Powered by a JIT Compiler",
"homepage": "https://github.com/blend2d/blend2d",
"documentation": "https://blend2d.com/doc/index.html",
"supports": "!(arm | uwp)",
"default-features": [
"jit",
"logging",
"tls"
],
"features": {
"jit": {
"description": "Default feature. Enables jit pipeline compilation. Not supported for ARM and UWP."
},
"logging": {
"description": "Default feature. Enables logging."
},
"tls": {
"description": "Default feature. Enables use of thread_local feature. Disable for platforms where thread local storage is expensive or not supported."
}
}
}