8 lines
158 B
Zig
8 lines
158 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
_ = b.addModule("media", .{
|
|
.root_source_file = b.path("src/root.zig"),
|
|
});
|
|
}
|