diff options
Diffstat (limited to 'vcpkg/ports/libva/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libva/vcpkg.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/vcpkg/ports/libva/vcpkg.json b/vcpkg/ports/libva/vcpkg.json new file mode 100644 index 0000000..3c8e388 --- /dev/null +++ b/vcpkg/ports/libva/vcpkg.json @@ -0,0 +1,36 @@ +{ + "name": "libva", + "version": "2.20.0", + "description": "Libva is an implementation for VA-API (Video Acceleration API)", + "homepage": "https://github.com/intel/libva", + "license": "MIT", + "supports": "linux", + "dependencies": [ + { + "name": "vcpkg-tool-meson", + "host": true + } + ], + "features": { + "glx": { + "description": "Build with GLX support", + "supports": "linux", + "dependencies": [ + { + "name": "libva", + "features": [ + "x11" + ] + } + ] + }, + "wayland": { + "description": "Build with Wayland support", + "supports": "linux" + }, + "x11": { + "description": "Build with X11 support", + "supports": "linux" + } + } +} |