fn addSystemCommand(self: *Build, argv: []const []const u8) *Step.Run

Initializes a Step.Run with argv, which must at least have the path to the executable. More command line arguments can be added with addArg, addArgs, and addArtifactArg. Be careful using this function, as it introduces a system dependency. To run an executable built with zig build, see Step.Compile.run.

Parameters

self: *Build,
argv: []const []const u8,