summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2023-10-07 21:43:33 +0100
committerMartin Ashby <martin@ashbysoft.com>2023-10-07 21:43:33 +0100
commita28a7c8db679d7a787be035035773abe8dadfff3 (patch)
tree3842a4dabbe201cc80babcdad3badd1da2d317cb /build.zig
downloadzipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.gz
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.bz2
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.tar.xz
zipdl-a28a7c8db679d7a787be035035773abe8dadfff3.zip
Initial.
Implementation of seekable HTTP range, which will be used for reading ZIP over http without downloading the whole thing.
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..4e8cdd6
--- /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 = "zipdl",
+ .root_source_file = .{ .path = "src/main.zig" },
+ .target = target,
+ .optimize = optimize,
+ });
+ const zip = b.dependency("zip", .{ .target = target, .optimize = optimize });
+ exe.addModule("zip", zip.module("zip"));
+
+ 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 = .{ .path = "src/main.zig" },
+ .target = target,
+ .optimize = optimize,
+ });
+ unit_tests.addModule("zip", zip.module("zip"));
+
+ const run_unit_tests = b.addRunArtifact(unit_tests);
+
+ const test_step = b.step("test", "Run unit tests");
+ test_step.dependOn(&run_unit_tests.step);
+}