mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
21 lines
531 B
Zig
21 lines
531 B
Zig
|
|
const std = @import("std");
|
||
|
|
|
||
|
|
pub fn build(b: *std.build.Builder) void {
|
||
|
|
const target = b.standardTargetOptions(.{});
|
||
|
|
const mode = b.standardReleaseOptions();
|
||
|
|
|
||
|
|
const exe = b.addExecutable("ncdu", "src/main.zig");
|
||
|
|
exe.setTarget(target);
|
||
|
|
exe.setBuildMode(mode);
|
||
|
|
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 app");
|
||
|
|
run_step.dependOn(&run_cmd.step);
|
||
|
|
}
|