Create functions in build.zig

This commit is contained in:
jaina heartles 2022-06-08 23:54:15 -07:00
parent 687fd6ef9d
commit 48c12f2e8c
1 changed files with 23 additions and 11 deletions

View File

@ -2,8 +2,28 @@ const std = @import("std");
const static_libs = [_][]const u8{
"util",
"http",
};
fn createLibs(b: *std.build.Builder) [static_libs.len]*std.build.LibExeObjStep {
var libs: [static_libs.len]*std.build.LibExeObjStep = undefined;
inline for (static_libs) |name, i| {
libs[i] = b.addStaticLibrary(name, "src/" ++ name ++ "/lib.zig");
}
return libs;
}
fn addRunStep(b: *std.build.Builder, exe: *std.build.LibExeObjStep) void {
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
}
pub fn build(b: *std.build.Builder) void {
// Standard target options allows the person running `zig build` to choose
// what target to build for. Here we do not override the defaults, which
@ -19,19 +39,11 @@ pub fn build(b: *std.build.Builder) void {
exe.setTarget(target);
exe.setBuildMode(mode);
inline for (static_libs) |name| {
const lib = b.addStaticLibrary(name, "src/" ++ name ++ "/lib.zig");
var libs = createLibs(b);
for (libs) |lib| {
exe.linkLibrary(lib);
}
exe.install();
const run_cmd = exe.run();
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
addRunStep(b, exe);
}