Files
castle/packages/vecmath/build.zig
2026-01-02 00:06:30 +01:00

8 lines
160 B
Zig

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