diff options
Diffstat (limited to 'vcpkg/ports/infoware/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/infoware/vcpkg.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/vcpkg/ports/infoware/vcpkg.json b/vcpkg/ports/infoware/vcpkg.json new file mode 100644 index 0000000..db54143 --- /dev/null +++ b/vcpkg/ports/infoware/vcpkg.json @@ -0,0 +1,55 @@ +{ + "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" + } + } +} |