aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-03-19 21:35:01 +0100
committerIsaac Freund <ifreund@ifreund.xyz>2020-03-19 21:35:01 +0100
commit7b735f690c46f8665627bd9ba5c9019462404aaf (patch)
tree2cf2868970fd4598d191cd844829ffcf760670cf /build.zig
parent0c6886cae375d9f49544fc5d28aff3e7fbdf129b (diff)
downloadriver-7b735f690c46f8665627bd9ba5c9019462404aaf.tar.gz
river-7b735f690c46f8665627bd9ba5c9019462404aaf.tar.xz
cleanup
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index df6dd28..c7a817c 100644
--- a/build.zig
+++ b/build.zig
@@ -11,7 +11,7 @@ pub fn build(b: *Builder) void {
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
- const exe = b.addExecutable("dwc", "src/main.zig");
+ const exe = b.addExecutable("zag", "src/main.zig");
exe.setTarget(target);
exe.setBuildMode(mode);
exe.linkLibC();