aether/build.zig
2025-06-03 02:08:52 -05:00

9 lines
259 B
Zig

pub fn build(b: *@import("std").Build) void {
_ = b.addStaticLibrary(.{
.name = "aether",
.root_source_file = b.path("root.zig"),
.target = b.standardTargetOptions(.{}),
.optimize = b.standardOptimizeOption(.{}),
});
}