1 parent a4a92a6 commit 1c51a3fCopy full SHA for 1c51a3f
1 file changed
build.zig
@@ -6,11 +6,14 @@ pub fn build(b: *std.Build) void {
6
const target = b.standardTargetOptions(.{});
7
const optimize = b.standardOptimizeOption(.{});
8
9
- const lib_mod = b.addModule(mod_name, .{
10
- .root_source_file = b.path("src/lib/root.zig"),
11
- .target = target,
12
- .optimize = optimize,
13
- },);
+ const lib_mod = b.addModule(
+ mod_name,
+ .{
+ .root_source_file = b.path("src/lib/root.zig"),
+ .target = target,
14
+ .optimize = optimize,
15
+ },
16
+ );
17
18
const lib = b.addLibrary(.{
19
.name = mod_name,
0 commit comments