Files
zig/test/standalone/dependencyFromBuildZig/other/build.zig
2024-04-18 03:07:44 -07:00

8 lines
155 B
Zig

const std = @import("std");
pub fn build(b: *std.Build) void {
_ = b.addModule("add", .{
.root_source_file = b.path("add.add.zig"),
});
}