This commit is contained in:
2025-10-24 14:05:36 +02:00
parent fb29707220
commit a6453733f3
3 changed files with 134 additions and 0 deletions

13
build.zig Normal file
View File

@@ -0,0 +1,13 @@
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);
}