regz/deps.zig
Matt Knight 4b04e50cf1
update clap, fix logs of optional types (#48)
* update clap, fix logs of optional types

* rename empty test
2022-07-31 22:01:30 -07:00

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-1c09e0dc/pkg/clap.zig",
},
};
pub fn addAllTo(artifact: *std.build.LibExeObjStep) void {
artifact.addPackage(pkgs.clap);
}
};