vcpkg/ports/blend2d/vcpkg.json
Connor Broyles edf51f5f25
[blend2d|osgearth] Allow blend2d and osgearth[blend2d] on ARM (#29141)
* [blend2d] Allow on non-Windows ARM platforms

* [osgearth] Allow blend2d feature on ARM
2023-02-03 12:39:12 -08:00

41 lines
1015 B
JSON

{
"name": "blend2d",
"version-date": "2022-12-31",
"port-version": 1,
"description": "Beta 2D Vector Graphics Powered by a JIT Compiler",
"homepage": "https://github.com/blend2d/blend2d",
"documentation": "https://blend2d.com/doc/index.html",
"license": "Zlib",
"supports": "!(arm & windows) & !uwp & !wasm32",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"futex",
"jit",
"logging",
"tls"
],
"features": {
"futex": {
"description": "Default feature. Enables use of futex."
},
"jit": {
"description": "Default feature. Enables jit pipeline compilation."
},
"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."
}
}
}