feat: update to Zig v0.12.0-dev.2063+804cee3b

This commit is contained in:
2024-02-08 17:50:00 -06:00
parent 14ea006f4f
commit 78b944a98f
2 changed files with 1 additions and 184 deletions

View File

@@ -15,10 +15,7 @@ pub fn build(b: *std.Build) void {
// set a preferred release mode, allowing the user to decide how to optimize.
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("zba-util", .{
.source_file = .{ .path = "src/lib.zig" },
.dependencies = &.{},
});
_ = b.addModule("zba-util", .{ .root_source_file = .{ .path = "src/lib.zig" } });
// Creates a step for unit testing. This only builds the test executable
// but does not run it.