diff options
Diffstat (limited to 'vcpkg/ports/vsg/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/vsg/vcpkg.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vcpkg/ports/vsg/vcpkg.json b/vcpkg/ports/vsg/vcpkg.json new file mode 100644 index 0000000..f9e2edf --- /dev/null +++ b/vcpkg/ports/vsg/vcpkg.json @@ -0,0 +1,46 @@ +{ + "name": "vsg", + "version": "1.1.11", + "port-version": 1, + "description": "A modern, cross platform, high performance scene graph library built upon Vulkan.", + "homepage": "http://www.vulkanscenegraph.org/", + "license": "MIT", + "dependencies": [ + "glslang", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "vulkan", + { + "name": "xcb", + "platform": "!(android | windows | osx)" + } + ], + "features": { + "shader-optimizer": { + "description": "shader optimizer support", + "dependencies": [ + { + "name": "glslang", + "features": [ + "opt" + ] + } + ] + }, + "windowing": { + "description": "native windowing support providing a default implementation of vsg::Window::create()", + "dependencies": [ + { + "name": "xcb", + "platform": "!(android | ios | osx | windows)" + } + ] + } + } +} |