diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-12-12 17:00:10 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-12-12 17:00:10 +0100 |
commit | 83c27ccc818df03c906ddc90357b99fddbfafbc0 (patch) | |
tree | fa9171f10331dbe46a1d671494782b1ba3c375a0 /build.zig |
start
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build.zig b/build.zig new file mode 100644 index 0000000..56b9024 --- /dev/null +++ b/build.zig @@ -0,0 +1,22 @@ +const std = @import("std"); + +pub fn build(b: *std.build.Builder) void { + const target = b.standardTargetOptions(.{}); + const mode = b.standardReleaseOptions(); + + const exe = b.addExecutable("1815", "src/main.zig"); + exe.setTarget(target); + exe.setBuildMode(mode); + exe.install(); + exe.linkSystemLibrary("notcurses"); + exe.linkSystemLibrary("c"); + + const run_cmd = exe.run(); + run_cmd.step.dependOn(b.getInstallStep()); + if (b.args) |args| { + run_cmd.addArgs(args); + } + + const run_step = b.step("run", "Run the app"); + run_step.dependOn(&run_cmd.step); +} |