vcpkg/ports/jasper/vcpkg.json
Russell Greene 99d30139e9
[jasper] disable opengl feature on ios, allowing it to build (#26472)
* [jasper] don't include opengl feature on ios

* ./vcpkg x-add-version --all

* add license: null to indiate a license not in SPDX

* ./vcpkg x-add-version --all
2022-08-26 11:55:08 -07:00

51 lines
1.1 KiB
JSON

{
"name": "jasper",
"version": "2.0.33",
"port-version": 6,
"description": "Open source implementation of the JPEG-2000 Part-1 standard",
"homepage": "https://github.com/mdadams/jasper",
"license": null,
"dependencies": [
"libjpeg-turbo",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"default-features"
],
"features": {
"default-features": {
"description": "Platform-dependent default features",
"dependencies": [
{
"name": "jasper",
"default-features": false,
"features": [
"opengl"
],
"platform": "!(windows & arm) & !uwp & !ios"
}
]
},
"opengl": {
"description": "Enable the use of the OpenGL/GLUT Library",
"dependencies": [
{
"name": "freeglut",
"platform": "!osx & !(windows & arm) & !uwp"
},
{
"name": "opengl",
"platform": "!(windows & arm) & !uwp"
}
]
}
}
}