dotfiles/scripts/vinput/build.zig

30 lines
710 B
Zig
Raw Normal View History

2022-10-16 20:31:31 +02:00
const std = @import("std");
pub fn build(b: *std.build.Builder) void {
const target = b.standardTargetOptions(.{});
const mode = b.standardOptimizeOption(.{});
2022-10-16 20:31:31 +02:00
const exe = b.addExecutable(.{
.name = "vinput",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = mode,
});
2022-10-17 10:47:36 +02:00
exe.linkLibC();
exe.linkSystemLibrary("x11");
2022-10-17 11:13:52 +02:00
exe.strip = mode != .Debug;
2023-04-17 21:29:15 +02:00
b.installArtifact(exe);
2022-10-16 20:31:31 +02:00
2023-04-17 21:29:15 +02:00
const run_cmd = b.addRunArtifact(exe);
2022-10-16 20:31:31 +02:00
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);
}