diff options
Diffstat (limited to 'vcpkg/ports/daxa/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/daxa/vcpkg.json | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/vcpkg/ports/daxa/vcpkg.json b/vcpkg/ports/daxa/vcpkg.json new file mode 100644 index 0000000..4df77eb --- /dev/null +++ b/vcpkg/ports/daxa/vcpkg.json @@ -0,0 +1,59 @@ +{ + "name": "daxa", + "version": "3.0.3", + "description": "Daxa C++ Vulkan Abstraction", + "homepage": "https://github.com/Ipotrick/Daxa", + "license": "MIT", + "supports": "(windows | linux) & !x86", + "dependencies": [ + "fmt", + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + }, + "vulkan", + "vulkan-headers", + "vulkan-memory-allocator", + { + "name": "wayland", + "default-features": false, + "platform": "linux" + } + ], + "features": { + "utils-imgui": { + "description": "The ImGUI Daxa utility", + "dependencies": [ + "imgui" + ] + }, + "utils-mem": { + "description": "The Mem Daxa utility" + }, + "utils-pipeline-manager-glslang": { + "description": "Build with glslang", + "dependencies": [ + "glslang" + ] + }, + "utils-pipeline-manager-slang": { + "description": "Build with Slang", + "dependencies": [ + "shader-slang" + ] + }, + "utils-pipeline-manager-spirv-validation": { + "description": "Build with SPIR-V validation", + "dependencies": [ + "spirv-tools" + ] + }, + "utils-task-graph": { + "description": "The Task-Graph Daxa utility" + } + } +} |