diff options
author | Martin Ashby <martin@ashbysoft.com> | 2024-07-14 21:10:09 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2024-07-14 21:10:09 +0100 |
commit | 54b7021b063a81bc1655a6b4519b9a41cd6ed30b (patch) | |
tree | 760762f8df8d9fb5dfb4022ad42ecb9127440623 /converter/build.zig | |
parent | 7d296d575b49f5de94f7354094344573b8701199 (diff) | |
download | mfashby.net-54b7021b063a81bc1655a6b4519b9a41cd6ed30b.tar.gz mfashby.net-54b7021b063a81bc1655a6b4519b9a41cd6ed30b.tar.bz2 mfashby.net-54b7021b063a81bc1655a6b4519b9a41cd6ed30b.tar.xz mfashby.net-54b7021b063a81bc1655a6b4519b9a41cd6ed30b.zip |
Bump mustache dep
Update .gitignore for new zig-cache location
Remove old converter sources.
Checked everything compiles with zig 0.13
Diffstat (limited to 'converter/build.zig')
-rw-r--r-- | converter/build.zig | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/converter/build.zig b/converter/build.zig deleted file mode 100644 index f1563cf..0000000 --- a/converter/build.zig +++ /dev/null @@ -1,36 +0,0 @@ -const std = @import("std"); - -pub fn build(b: *std.Build) void { - const target = b.standardTargetOptions(.{}); - const optimize = b.standardOptimizeOption(.{}); - - const exe = b.addExecutable(.{ - .name = "converter", - .root_source_file = .{ .path = "src/main.zig" }, - .target = target, - .optimize = optimize, - }); - const ziggy = b.dependency("ziggy", .{}); - exe.root_module.addImport("ziggy", ziggy.module("ziggy")); - - 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 exe_unit_tests = b.addTest(.{ - .root_source_file = .{ .path = "src/main.zig" }, - .target = target, - .optimize = optimize, - }); - - const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests); - const test_step = b.step("test", "Run unit tests"); - test_step.dependOn(&run_exe_unit_tests.step); -} |