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.
24 lines
683 B
Zig
24 lines
683 B
Zig
2 years ago
|
const std = @import("std");
|
||
|
|
||
|
pub fn build(b: *std.build.Builder) void {
|
||
|
const target = b.standardTargetOptions(.{});
|
||
|
const bmode = b.standardReleaseOptions();
|
||
|
|
||
|
const do_strip = b.option(bool, "strip", "strip output; on for release-small") orelse (bmode == .ReleaseSmall);
|
||
|
|
||
|
const exe = b.addExecutable("zdoc", "src/main.zig");
|
||
|
exe.setTarget(target);
|
||
|
exe.setBuildMode(bmode);
|
||
|
exe.strip = do_strip;
|
||
|
exe.install();
|
||
|
|
||
|
const run_cmd = exe.run();
|
||
|
run_cmd.step.dependOn(b.getInstallStep());
|
||
|
if (b.args) |args| {
|
||
|
run_cmd.addArgs(args);
|
||
|
}
|
||
|
|
||
|
const run_step = b.step("run", "run the executable");
|
||
|
run_step.dependOn(&run_cmd.step);
|
||
|
}
|