diff --git a/build.zig b/build.zig index 8fdd311..afff314 100644 --- a/build.zig +++ b/build.zig @@ -21,7 +21,7 @@ pub fn build(b: *std.Build) void { const objc = objc_dep.module("objc"); const lib = b.addStaticLibrary(.{ - .name = "infoz", + .name = "barkfetch", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = b.path("src/root.zig"), @@ -29,7 +29,7 @@ pub fn build(b: *std.Build) void { .optimize = optimize, }); const macos = b.addStaticLibrary(.{ - .name = "infoz", + .name = "barkfetch", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. .root_source_file = b.path("src/macos.zig"), @@ -46,7 +46,7 @@ pub fn build(b: *std.Build) void { b.installArtifact(macos); const exe = b.addExecutable(.{ - .name = "infoz", + .name = "barkfetch", .root_source_file = b.path("src/main.zig"), .target = target, .optimize = optimize,