mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 18:51:39 +08:00
fcae467932
- [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. Updating the port to 4.3.1 was pretty painless. Adding the fix for the iOS port seems a bit crass but I tried linking against the port without issue. Sadly I can't test at runtime at the moment.
37 lines
802 B
JSON
37 lines
802 B
JSON
{
|
||
"name": "ktx",
|
||
"version-semver": "4.3.1",
|
||
"description": [
|
||
"The Khronos KTX library and tools.",
|
||
"Functions for writing and reading KTX files, and instantiating OpenGL®, OpenGL ES™️ and Vulkan® textures from them."
|
||
],
|
||
"homepage": "https://github.com/KhronosGroup/KTX-Software",
|
||
"license": null,
|
||
"supports": "arm64 | x64 | !windows",
|
||
"dependencies": [
|
||
{
|
||
"name": "vcpkg-cmake",
|
||
"host": true
|
||
},
|
||
{
|
||
"name": "vcpkg-cmake-config",
|
||
"host": true
|
||
},
|
||
"zstd"
|
||
],
|
||
"features": {
|
||
"tools": {
|
||
"description": "Build tools",
|
||
"supports": "!android",
|
||
"dependencies": [
|
||
"cxxopts",
|
||
"fmt"
|
||
]
|
||
},
|
||
"vulkan": {
|
||
"description": "Build Vulkan support",
|
||
"supports": "!emscripten"
|
||
}
|
||
}
|
||
}
|