diff --git a/build.zig b/build.zig index 60f2034..780b792 100644 --- a/build.zig +++ b/build.zig @@ -15,6 +15,12 @@ pub fn build(b: *std.Build) void { // set a preferred release mode, allowing the user to decide how to optimize. const optimize = b.standardOptimizeOption(.{}); + _ = b.addModule("silkdot", .{ + .root_source_file = .{ .path = "src/main.zig" }, + .target = target, + .optimize = optimize, + }); + const lib = b.addStaticLibrary(.{ .name = "master", // In this case the main source file is merely a path, however, in more