14 lines
409 B
Zig
14 lines
409 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSafe });
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
const faller = b.addModule("faller", .{
|
|
.root_source_file = b.path("src/root.zig"),
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
faller.addImport("faller", faller);
|
|
}
|