move vk.xml to src

This commit is contained in:
David Allemang
2024-03-27 10:56:18 -04:00
parent 282c38ddfc
commit 6763d9a73a
2 changed files with 1 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const vk = b.dependency("vulkan-zig", .{
.registry = @as([]const u8, b.pathFromRoot("reg/vk.xml")),
.registry = @as([]const u8, b.pathFromRoot("src/vk.xml")),
});
const vkmod = vk.module("vulkan-zig");