You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
548 B
Zig

const std = @import("std");
const Pkg = std.build.Pkg;
const FileSource = std.build.FileSource;
pub const build_pkgs = struct {
pub const libxml2 = @import(".gyro/zig-libxml2-mitchellh-github.com-db780502/pkg/libxml2.zig");
};
pub const pkgs = struct {
pub const clap = Pkg{
.name = "clap",
.source = FileSource{
.path = ".gyro/zig-clap-Hejsil-github.com-996821a3/pkg/clap.zig",
},
};
pub fn addAllTo(artifact: *std.build.LibExeObjStep) void {
artifact.addPackage(pkgs.clap);
}
};