allow "zig build" to work (although it will not do much)

This commit is contained in:
Emil Lerch 2023-10-03 13:43:58 -07:00
parent fc0f9a0c76
commit 3088af4219
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -19,7 +19,7 @@ pub fn build(b: *std.Build) !void {
.name = "universal-lambda-zig", .name = "universal-lambda-zig",
// In this case the main source file is merely a path, however, in more // In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file. // 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, .target = target,
.optimize = optimize, .optimize = optimize,
}); });