summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-13 19:05:32 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2025-08-13 19:05:32 +0200
commitab36c1b5178ee0e7934b1c5cdcf2ccfccc3514bb (patch)
tree1d02229f3e165ec375d10301820ae71c16fe6a16 /build.zig
parent1a795d8eb7a9e7475414fa537810726d2be127cb (diff)
Add a Zig port.
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig39
1 files changed, 39 insertions, 0 deletions
diff --git a/build.zig b/build.zig
new file mode 100644
index 0000000..6810bfc
--- /dev/null
+++ b/build.zig
@@ -0,0 +1,39 @@
+const std = @import("std");
+
+pub fn build(b: *std.Build) void {
+ const target = b.standardTargetOptions(.{});
+ const optimize = b.standardOptimizeOption(.{});
+
+ const exe = b.addExecutable(.{
+ .name = "dosage",
+ .root_source_file = b.path("src/main.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
+
+ // Add cross-platform terminal support
+ exe.linkLibC();
+
+ b.installArtifact(exe);
+
+ const run_cmd = b.addRunArtifact(exe);
+ 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 unit_tests = b.addTest(.{
+ .root_source_file = b.path("src/main.zig"),
+ .target = target,
+ .optimize = optimize,
+ });
+
+ const run_unit_tests = b.addRunArtifact(unit_tests);
+
+ const test_step = b.step("test", "Run unit tests");
+ test_step.dependOn(&run_unit_tests.step);
+} \ No newline at end of file