File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,21 +5,21 @@ pub fn build(b: *std.Build) void {
5
5
const optimize = b .standardOptimizeOption (.{ .preferred_optimize_mode = .ReleaseFast });
6
6
7
7
const lib = b .addStaticLibrary (.{
8
- .name = "kafka.zig " ,
8
+ .name = "kafka" ,
9
9
.root_source_file = b .path ("src/kafka.zig" ),
10
10
.target = target ,
11
11
.optimize = optimize ,
12
12
});
13
13
14
14
b .installArtifact (lib );
15
15
16
- const kafkazig = b .addModule ("kafka.zig " , .{
16
+ const kafkazig = b .addModule ("kafka" , .{
17
17
.root_source_file = b .path ("src/kafka.zig" ),
18
18
.link_libc = true ,
19
19
});
20
20
21
21
const exe = b .addExecutable (.{
22
- .name = "kafka.zig " ,
22
+ .name = "kafka" ,
23
23
.root_source_file = b .path ("src/kafka.zig" ),
24
24
.target = target ,
25
25
.optimize = optimize ,
You can’t perform that action at this time.
0 commit comments