configure package

This commit is contained in:
Jeeves 2024-03-16 12:01:43 -06:00
parent 99dbc6899e
commit f7b4f322cb
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{}); const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{ const exe = b.addExecutable(.{
.name = "default", .name = "statusbar",
// In this case the main source file is merely a path, however, in more // In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file. // complicated build scripts, this could be a generated file.
.root_source_file = .{ .path = "src/main.zig" }, .root_source_file = .{ .path = "src/main.zig" },

View file

@ -46,7 +46,7 @@
pkg = packages.target.${target}; pkg = packages.target.${target};
in { in {
type = "app"; type = "app";
program = "${pkg}/bin/default"; program = "${pkg}/bin/statusbar";
}); });
# default bundle # default bundle