mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 00:03:10 +00:00
8 lines
155 B
Zig
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"),
|
|
});
|
|
}
|