Skip to content

Commit dfd49ce

Browse files
committed
make naming consistent
1 parent dd0915c commit dfd49ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ pub fn build(b: *std.Build) void {
55
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseFast });
66

77
const lib = b.addStaticLibrary(.{
8-
.name = "kafka.zig",
8+
.name = "kafka",
99
.root_source_file = b.path("src/kafka.zig"),
1010
.target = target,
1111
.optimize = optimize,
1212
});
1313

1414
b.installArtifact(lib);
1515

16-
const kafkazig = b.addModule("kafka.zig", .{
16+
const kafkazig = b.addModule("kafka", .{
1717
.root_source_file = b.path("src/kafka.zig"),
1818
.link_libc = true,
1919
});
2020

2121
const exe = b.addExecutable(.{
22-
.name = "kafka.zig",
22+
.name = "kafka",
2323
.root_source_file = b.path("src/kafka.zig"),
2424
.target = target,
2525
.optimize = optimize,

0 commit comments

Comments
 (0)