Skip to content

Commit

Permalink
install zig
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Aug 6, 2023
1 parent 0b3be0a commit 6f1d22d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ pub fn build(b: *Build) !void {
const backings = @import("test/backings.zig");
const optimize = b.standardOptimizeOption(.{});

// This only ever intends to run on the host machine, so no target or
// optimize set
const regz_dep = b.dependency("regz", .{});
b.installArtifact(regz_dep.artifact("regz"));

const minimal = addEmbeddedExecutable(b, .{
.name = "minimal",
.source_file = .{
Expand Down

0 comments on commit 6f1d22d

Please sign in to comment.