We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9048a86 commit ce818cfCopy full SHA for ce818cf
build.zig
@@ -30,5 +30,9 @@ pub fn build(b: *std.Build) void {
30
b.installArtifact(lib);
31
32
// Export as module to be available for @import("Fluent") on user site
33
- _ = b.addModule("Fluent", .{ .root_source_file = b.path("fluent.zig") });
+ _ = b.addModule("Fluent", .{
34
+ .root_source_file = b.path("fluent.zig"),
35
+ .target = target,
36
+ .optimize = optimize,
37
+ });
38
}
build.zig.zon
@@ -6,5 +6,6 @@
6
"LICENSE",
7
"README.md",
8
"build.zig.zon",
9
+ "build.zig",
10
},
11
0 commit comments