From 3088af42193f642d1b05decf1f62a6ffb6fda164 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Tue, 3 Oct 2023 13:43:58 -0700 Subject: [PATCH] allow "zig build" to work (although it will not do much) --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 70b027e..f43302b 100644 --- a/build.zig +++ b/build.zig @@ -19,7 +19,7 @@ pub fn build(b: *std.Build) !void { .name = "universal-lambda-zig", // In this case the main source file is merely a path, however, in more // complicated build scripts, this could be a generated file. - .root_source_file = .{ .path = "src/main.zig" }, + .root_source_file = .{ .path = "src/universal_lambda_build.zig" }, .target = target, .optimize = optimize, });