refactor: Rename from infoz to barkfetch

This commit is contained in:
Kalle Carlbark 2024-09-21 23:34:54 +02:00
parent 9487c4abc4
commit f977300213
No known key found for this signature in database

View file

@ -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,