You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\\ if (!std.Target.current.isDarwin()) @panic(exe.builder.fmt("a dependency is attempting to link to the framework {s}, which is only possible under Darwin", .{item}));
\\ if (builtin.os.tag == .windows and vcpkg) exe.addVcpkgPaths(.static) catch |err| @panic(@errorName(err));
I would like to suggest to create a separate function here for linking libraries, so users can call it separately in the case they need to mess around with packages.
The text was updated successfully, but these errors were encountered:
Hello there.
Long story short, here's what I've done to override one of the packages with project-specific options inside
build.zig
:As you can see, I called the following part of the
addAllTo
function manually:zigmod/src/cmd/fetch.zig
Lines 56 to 80 in b47ad60
I would like to suggest to create a separate function here for linking libraries, so users can call it separately in the case they need to mess around with packages.
The text was updated successfully, but these errors were encountered: