From f9773002135f5fa16b843a5a0b977ad786c14a94 Mon Sep 17 00:00:00 2001 From: Kalle Carlbark Date: Sat, 21 Sep 2024 23:34:54 +0200 Subject: [PATCH] refactor: Rename from infoz to barkfetch --- build.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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,