mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 08:19:02 +08:00
348fe8e55f
* [blend2d] update port to 0.10 - transition from `version-date` to `version` - Update blend2d to 0.10 - Update local asmjit to 2023-04-28 - Arm is fixed for windows * [blend2d] update versions
69 lines
1.5 KiB
JSON
69 lines
1.5 KiB
JSON
{
|
|
"name": "blend2d",
|
|
"version": "0.10",
|
|
"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": "!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.",
|
|
"dependencies": [
|
|
{
|
|
"name": "blend2d",
|
|
"default-features": false,
|
|
"features": [
|
|
"futex"
|
|
],
|
|
"platform": "windows"
|
|
}
|
|
]
|
|
},
|
|
"logging": {
|
|
"description": "Default feature. Enables logging.",
|
|
"dependencies": [
|
|
{
|
|
"name": "blend2d",
|
|
"default-features": false,
|
|
"features": [
|
|
"jit"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"tls": {
|
|
"description": "Default feature. Enables use of thread_local feature. Disable for platforms where thread local storage is expensive or not supported.",
|
|
"dependencies": [
|
|
{
|
|
"name": "blend2d",
|
|
"default-features": false,
|
|
"features": [
|
|
"futex"
|
|
],
|
|
"platform": "windows"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|