Skip to content

Commit

Permalink
add blobs (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
marler8997 authored May 15, 2024
1 parent d275584 commit 83983b7
Show file tree
Hide file tree
Showing 5 changed files with 1,138 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,19 @@ pub fn build(b: *Build) void {
add_zeroman_assets_step(b, zeroman_cart);
zeroman_cart.install(b);

{
const cart = add_cart(&dep, b, .{
.name = "blobs",
.optimize = .ReleaseSmall,
.root_source_file = .{ .path = "samples/blobs/blobs.zig" },
});
cart.install(b);
b.step("watch-blobs", "Watch/run blobs in the simulator").dependOn(
&cart.install_with_watcher(&dep, b, .{}).step
);
}


const watch_step = b.step("watch", "");
watch_step.dependOn(&watch_run_step.step);

Expand Down
Loading

0 comments on commit 83983b7

Please sign in to comment.