mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
35 lines
1.1 KiB
Zig
35 lines
1.1 KiB
Zig
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
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.use_stage1 = true; // TODO: remove
|
|
exe.setTarget(target);
|
|
exe.setBuildMode(mode);
|
|
exe.addCSourceFile("src/ncurses_refs.c", &[_][]const u8{});
|
|
exe.linkLibC();
|
|
exe.linkSystemLibrary("ncursesw");
|
|
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);
|
|
|
|
const tst = b.addTest("src/main.zig");
|
|
tst.use_stage1 = true; // TODO: remove
|
|
tst.linkLibC();
|
|
tst.linkSystemLibrary("ncursesw");
|
|
tst.addCSourceFile("src/ncurses_refs.c", &[_][]const u8{});
|
|
const tst_step = b.step("test", "Run tests");
|
|
tst_step.dependOn(&tst.step);
|
|
}
|