mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 12:41:38 +08:00
3d04b3819b
* [infoware] Update * Fix cross builds * Update 'supports' * [pciids] New helper port * Remove obsolete comment
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "infoware",
|
|
"version-date": "2023-04-12",
|
|
"description": "C++ Library for pulling system and hardware information, without hitting the command line.",
|
|
"homepage": "https://github.com/ThePhD/infoware",
|
|
"license": "CC0-1.0",
|
|
"supports": "!android & !uwp & !(windows & arm)",
|
|
"dependencies": [
|
|
{
|
|
"name": "infoware",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "pciids",
|
|
"platform": "native"
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"d3d": {
|
|
"description": [
|
|
"Use Direct3D for GPU detection.",
|
|
"This choice has priority over opencl and opengl."
|
|
],
|
|
"supports": "windows"
|
|
},
|
|
"opencl": {
|
|
"description": [
|
|
"Use OpenCL for GPU detection.",
|
|
"This choice has priority over opengl."
|
|
],
|
|
"dependencies": [
|
|
"opencl"
|
|
]
|
|
},
|
|
"opengl": {
|
|
"description": "Use OpenGL for GPU detection.",
|
|
"supports": "!osx & !ios",
|
|
"dependencies": [
|
|
"opengl"
|
|
]
|
|
},
|
|
"x11": {
|
|
"description": "Use X11 for display detection.",
|
|
"supports": "!windows"
|
|
}
|
|
}
|
|
}
|