Make the microzig package public to allow it to be passed as dependency. (#73)

wch-ch32v003
Nicolas Goy 2 years ago committed by GitHub
parent a2dd362ce7
commit b8d92b2539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -188,13 +188,13 @@ pub fn addEmbeddedExecutable(
return exe;
}
const pkgs = struct {
pub const pkgs = struct {
const mmio = std.build.Pkg{
.name = "microzig-mmio",
.source = .{ .path = root_path ++ "core/mmio.zig" },
};
const microzig = std.build.Pkg{
pub const microzig = std.build.Pkg{
.name = "microzig",
.source = .{ .path = root_path ++ "core/import-package.zig" },
};

Loading…
Cancel
Save