-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig
48 lines (41 loc) · 1.25 KB
/
build.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const std = @import("std");
const debug_prefix = "/Users/siddhant/.zup-debug";
pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
.name = "zup",
.root_source_file = b.path("src/main.zig"),
.target = b.standardTargetOptions(.{}),
.optimize = b.standardOptimizeOption(.{}),
});
exe.linkLibC();
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
run_cmd.setEnvironmentVariable("ZUP_PREFIX", debug_prefix);
if (b.args) |args| run_cmd.addArgs(args);
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
const watchexec = b.addSystemCommand(&.{"watchexec"});
watchexec.step.dependOn(b.getInstallStep());
watchexec.setEnvironmentVariable("ZUP_PREFIX", debug_prefix);
watchexec.addArgs(&.{
"-q",
"-c",
"-e",
"zig,zon",
"-i",
"zig-cache/**",
"-i",
"zig-out/**",
"zig",
"build",
"run",
"--",
"list",
// "install",
// "uninstall",
// "prune",
});
const watch = b.step("watch", "(Re)build and run app when source changes");
watch.dependOn(&watchexec.step);
}