feat(build): add build.zig file

This commit is contained in:
phaneron 2024-06-27 23:57:29 -04:00
parent 823f0da277
commit 73b76e044b

11
build.zig Normal file
View file

@ -0,0 +1,11 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const module = b.addModule(.{
.name = "system",
.root_source_file = b.path("zig/system.zig"),
.optimize = optimize
});
b.default_step.dependOn(&module.step);
}