summaryrefslogtreecommitdiff
path: root/build.zig
blob: e16eb2d20721d7e5d5548f6e4106bc20c10a0337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// SPDX-FileCopyrightText: 2021 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.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.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);
}