summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 51e049f..a7b2b23 100644
--- a/build.zig
+++ b/build.zig
@@ -2,8 +2,8 @@ const std = @import("std");
pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
- .name = "http",
- .root_module = b.createModule(.{ .root_source_file = b.path("http.zig"), .target = b.graph.host }),
+ .name = "coinvane",
+ .root_module = b.createModule(.{ .root_source_file = b.path("coinvane.zig"), .target = b.graph.host }),
});
b.installArtifact(exe);