Emil Lerch
72d143c976
All checks were successful
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 1m19s
39 lines
1.6 KiB
Zig
39 lines
1.6 KiB
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
/// flexilib will create a dynamic library for use with flexilib.
|
|
/// Flexilib will need to get the exe compiled as a library
|
|
/// For flexilib, we will need the main file to have a pub fn named
|
|
/// "handler". If it is not called that, a pub const handler = ... can be
|
|
/// used instead
|
|
pub fn configureBuild(b: *std.build.Builder, cs: *std.Build.Step.Compile, build_root_src: []const u8) !void {
|
|
const package_step = b.step("flexilib", "Create a flexilib dynamic library");
|
|
|
|
const lib = b.addSharedLibrary(.{
|
|
.name = cs.name,
|
|
.root_source_file = .{ .path = b.pathJoin(&[_][]const u8{ build_root_src, "flexilib.zig" }) },
|
|
.target = cs.target,
|
|
.optimize = cs.optimize,
|
|
});
|
|
|
|
// We will not free this, as the rest of the build system will use it.
|
|
// This should be ok because our allocator is, I believe, an arena
|
|
var module_dependencies = try b.allocator.alloc(std.Build.ModuleDependency, cs.modules.count());
|
|
var iterator = cs.modules.iterator();
|
|
|
|
var i: usize = 0;
|
|
while (iterator.next()) |entry| : (i += 1) {
|
|
module_dependencies[i] = .{
|
|
.name = entry.key_ptr.*,
|
|
.module = entry.value_ptr.*,
|
|
};
|
|
lib.addModule(entry.key_ptr.*, entry.value_ptr.*);
|
|
}
|
|
lib.addAnonymousModule("flexilib_handler", .{
|
|
// Source file can be anywhere on disk, does not need to be a subdirectory
|
|
.source_file = cs.root_src.?,
|
|
.dependencies = module_dependencies,
|
|
});
|
|
package_step.dependOn(&b.addInstallArtifact(lib, .{}).step);
|
|
}
|