refactor: Rename from infoz to barkfetch
This commit is contained in:
parent
9487c4abc4
commit
f977300213
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue