deps: update z2d

We need to use this version of z2d so that we can get reproducible PNG
exports in CI for testing, since previously the PNG export was affected
by the CPU arch / features because it depended on vector width.
This commit is contained in:
Qwerasd
2025-06-30 11:01:07 -06:00
parent 2084d5f256
commit 61b7dffcaa
5 changed files with 14 additions and 15 deletions

View File

@@ -405,12 +405,11 @@ pub fn add(
})) |dep| {
step.root_module.addImport("xev", dep.module("xev"));
}
if (b.lazyDependency("z2d", .{})) |dep| {
step.root_module.addImport("z2d", b.addModule("z2d", .{
.root_source_file = dep.path("src/z2d.zig"),
.target = target,
.optimize = optimize,
}));
if (b.lazyDependency("z2d", .{
.target = target,
.optimize = optimize,
})) |dep| {
step.root_module.addImport("z2d", dep.module("z2d"));
}
if (b.lazyDependency("ziglyph", .{
.target = target,