mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 00:09:01 +08:00
8e6f6a382e
* [simage] Update to 1.8.1 * Format manifest and update version files * Revert the changes for arm and uwp in ci.baseline.txt * Update versions/s-/simage.json * Update ports/simage/portfile.cmake * Update ports/simage/portfile.cmake * Update ports/simage/portfile.cmake * Update versions/s-/simage.json * Add options to packages * Update versions/s-/simage.json * Update portfile.cmake * Update versions/s-/simage.json * Update portfile.cmake * Update versions/s-/simage.json * [simage] Reorganize all features, add features * Install tool simage-config on non-Windows * fix typo * Add supports field and update ci.baseline.txt * Update versions/s-/simage.json Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
119 lines
2.5 KiB
JSON
119 lines
2.5 KiB
JSON
{
|
|
"name": "simage",
|
|
"version-semver": "1.8.1",
|
|
"description": "Image file format library abstraction layer",
|
|
"homepage": "https://github.com/coin3d/simage",
|
|
"supports": "!uwp",
|
|
"default-features": [
|
|
"all"
|
|
],
|
|
"features": {
|
|
"all": {
|
|
"description": "Enable all features",
|
|
"dependencies": [
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"oggvorbis"
|
|
]
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"sndfile"
|
|
]
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"giflib"
|
|
],
|
|
"platform": "!windows"
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"jpeg"
|
|
],
|
|
"platform": "!windows"
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"png"
|
|
],
|
|
"platform": "!windows"
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"tiff"
|
|
],
|
|
"platform": "!windows"
|
|
},
|
|
{
|
|
"name": "simage",
|
|
"default-features": false,
|
|
"features": [
|
|
"zlib"
|
|
],
|
|
"platform": "!windows"
|
|
}
|
|
]
|
|
},
|
|
"giflib": {
|
|
"description": "Enable support for GIF images",
|
|
"dependencies": [
|
|
"giflib"
|
|
]
|
|
},
|
|
"jpeg": {
|
|
"description": "Enable support for JPEG images",
|
|
"dependencies": [
|
|
"libjpeg-turbo"
|
|
]
|
|
},
|
|
"oggvorbis": {
|
|
"description": "Enable support for ogg/vorbis extensions",
|
|
"dependencies": [
|
|
"libogg",
|
|
"libvorbis",
|
|
"opus"
|
|
]
|
|
},
|
|
"png": {
|
|
"description": "Enable support for PNG images",
|
|
"dependencies": [
|
|
"libpng"
|
|
]
|
|
},
|
|
"sndfile": {
|
|
"description": "Use libsndfile to load/save sampled sound",
|
|
"dependencies": [
|
|
"libflac",
|
|
"libsndfile"
|
|
]
|
|
},
|
|
"tiff": {
|
|
"description": "Enable support for TIFF images",
|
|
"dependencies": [
|
|
"liblzma",
|
|
"tiff",
|
|
"zstd"
|
|
]
|
|
},
|
|
"zlib": {
|
|
"description": "Enable support for zlib library",
|
|
"dependencies": [
|
|
"zlib"
|
|
]
|
|
}
|
|
}
|
|
}
|