mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Might be useful for package maintainers. Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
42 lines
1.3 KiB
Zig
42 lines
1.3 KiB
Zig
// SPDX-FileCopyrightText: 2021-2023 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 pie = b.option(bool, "pie", "Build with PIE support (by default false)") orelse false;
|
|
|
|
const exe = b.addExecutable("ncdu", "src/main.zig");
|
|
exe.setTarget(target);
|
|
exe.setBuildMode(mode);
|
|
// https://github.com/ziglang/zig/blob/b52be973dfb7d1408218b8e75800a2da3dc69108/build.zig#L551-L554
|
|
if (exe.target.isDarwin()) {
|
|
// useful for package maintainers
|
|
exe.headerpad_max_install_names = true;
|
|
}
|
|
exe.addCSourceFile("src/ncurses_refs.c", &[_][]const u8{});
|
|
exe.linkLibC();
|
|
exe.linkSystemLibrary("ncursesw");
|
|
exe.pie = pie;
|
|
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{});
|
|
tst.pie = pie;
|
|
const tst_step = b.step("test", "Run tests");
|
|
tst_step.dependOn(&tst.step);
|
|
}
|