@@ -7,8 +7,8 @@ pub fn build(b: *std.Build) void {
const dep_mqtt = b.dependency("mqtt", .{ .target = target, .optimize = optimize });
const exe = b.addExecutable(.{
.name = "herbomony",
.root_source_file = b.path("src/zigbee.zig"),
.name = "gak",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
@@ -28,7 +28,7 @@ pub fn build(b: *std.Build) void {
run_step.dependOn(&run_cmd.step);
const exe_unit_tests = b.addTest(.{
.root_source_file = b.path("src/zigbee.zig"),
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});