add module

This commit is contained in:
Jeeves 2024-04-21 09:19:03 -06:00
parent f06532e756
commit 4739675642

View file

@ -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