Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
dependencyFromBuildZig
other
build.zig
pretty
plain
permalink
blame
history
•
7 lines
•
155 B
1
const std = @import("std");
2
3
pub fn build(b: *std.Build) void {
4
_ = b.addModule("add", .{
5
.root_source_file = b.path("add.add.zig"),
6
});
7
}