Fixes for 0.12.0-dev.2334+aef1da163

This commit is contained in:
Jose Colon Rodriguez
2024-01-27 08:18:18 -04:00
parent a93a0a4f92
commit 1e282e6d7c
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("io", .{ .source_file = .{ .path = "src/io.zig" } });
_ = b.addModule("io", .{ .root_source_file = .{ .path = "src/io.zig" } });
const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/test.zig" },