init
This commit is contained in:
13
build.zig
Normal file
13
build.zig
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user