fix broken downstream builds (I hope)
All checks were successful
Generic zig build / build (push) Successful in 1m0s
All checks were successful
Generic zig build / build (push) Successful in 1m0s
This commit is contained in:
parent
f5612a2c5b
commit
94a9c69fb7
|
@ -8,15 +8,13 @@ pub fn configureBuild(b: *std.Build, cs: *std.Build.Step.Compile, universal_lamb
|
||||||
|
|
||||||
const lib = b.addSharedLibrary(.{
|
const lib = b.addSharedLibrary(.{
|
||||||
.name = cs.name,
|
.name = cs.name,
|
||||||
.root_source_file = .{
|
.root_source_file = b.path(b.pathJoin(&[_][]const u8{
|
||||||
.path = b.pathJoin(&[_][]const u8{
|
// root path comes from our dependency, which should be us,
|
||||||
// root path comes from our dependency, which should be us,
|
// and if it's not, we'll just blow up here but it's not our fault ;-)
|
||||||
// and if it's not, we'll just blow up here but it's not our fault ;-)
|
universal_lambda_zig_dep.builder.build_root.path.?,
|
||||||
universal_lambda_zig_dep.builder.build_root.path.?,
|
"src",
|
||||||
"src",
|
"flexilib.zig",
|
||||||
"flexilib.zig",
|
})),
|
||||||
}),
|
|
||||||
},
|
|
||||||
.target = cs.root_module.resolved_target.?,
|
.target = cs.root_module.resolved_target.?,
|
||||||
.optimize = cs.root_module.optimize.?,
|
.optimize = cs.root_module.optimize.?,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user