Skip to content

Commit 1c51a3f

Browse files
committed
line ending
1 parent a4a92a6 commit 1c51a3f

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

‎build.zig‎

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ pub fn build(b: *std.Build) void {
66
const target = b.standardTargetOptions(.{});
77
const optimize = b.standardOptimizeOption(.{});
88

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-
},);
9+
const lib_mod = b.addModule(
10+
mod_name,
11+
.{
12+
.root_source_file = b.path("src/lib/root.zig"),
13+
.target = target,
14+
.optimize = optimize,
15+
},
16+
);
1417

1518
const lib = b.addLibrary(.{
1619
.name = mod_name,

0 commit comments

Comments
 (0)