summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2026-08-22 05:08:57 +0000
committerIbrahim Muftee <ibrahim@muftee.net>2026-08-22 05:08:57 +0000
commit0a19fd4505c1eeaeb2276b65e03d648902ded4b4 (patch)
treefcffa39c11bbae53e8153fba284752f924049afa /build.zig
parentd103e8c8f6ed1194ba0706589c1ce339e97eff23 (diff)
Create new entrypoint
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);