We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec133ae commit 68a14feCopy full SHA for 68a14fe
build.zig
@@ -15,6 +15,12 @@ pub fn build(b: *std.Build) void {
15
// set a preferred release mode, allowing the user to decide how to optimize.
16
const optimize = b.standardOptimizeOption(.{});
17
18
+ _ = b.addModule("blowfish", .{
19
+ .root_source_file = b.path("src/root.zig"),
20
+ .target = target,
21
+ .optimize = optimize,
22
+ });
23
+
24
const lib = b.addStaticLibrary(.{
25
.name = "blowfish",
26
// In this case the main source file is merely a path, however, in more
0 commit comments