Change build param. 'source_file' -> 'root_source_file'

This commit is contained in:
Abdulmujeeb Raji 2024-01-11 19:12:22 +00:00
parent 6777f1db22
commit a9af6501e1
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ const std = @import("std");
pub fn build(b: *std.Build) void {
_ = b.addModule("zigwin32", .{
.source_file = .{ .path = "win32.zig" },
.root_source_file = .{ .path = "win32.zig" },
});
}