add configureBuild in build.zig
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m18s

This commit is contained in:
Emil Lerch 2023-09-20 15:08:33 -07:00
parent 87b83ee084
commit 88ff6bf9c6
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -52,3 +52,7 @@ pub fn build(b: *std.Build) !void {
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&run_main_tests.step);
}
pub fn configureBuild(b: *std.Build, cs: *std.Build.Step.Compile) !void {
try @import("src/universal_lambda_build.zig").configureBuild(b, cs);
}