fix: Fix add package for zig 0.9.0 and master 0b22
This commit is contained in:
parent
d3aa1efe38
commit
e3e039ba82
@ -23,14 +23,13 @@ pub fn build(b: *Builder) void {
|
||||
exe.setOutputDir(std.fs.path.join(b.allocator, &[_][]const u8{ b.cache_root, "bin" }) catch unreachable);
|
||||
exe.addPackagePath("ecs", "src/ecs.zig");
|
||||
exe.linkSystemLibrary("c");
|
||||
|
||||
|
||||
const docs = exe;
|
||||
docs.emit_docs = .emit;
|
||||
|
||||
const doc = b.step("docs", "Generate documentation");
|
||||
doc.dependOn(&docs.step);
|
||||
|
||||
|
||||
const run_cmd = exe.run();
|
||||
const exe_step = b.step(name, b.fmt("run {s}.zig", .{name}));
|
||||
exe_step.dependOn(&run_cmd.step);
|
||||
@ -65,7 +64,7 @@ pub const LibType = enum(i32) {
|
||||
pub fn getPackage(comptime prefix_path: []const u8) std.build.Pkg {
|
||||
return .{
|
||||
.name = "ecs",
|
||||
.path = prefix_path ++ "src/ecs.zig",
|
||||
.path = .{ .path = prefix_path ++ "src/ecs.zig" },
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user