| ... | @@ -1,9 +1,12 @@ | ... | @@ -1,9 +1,12 @@ |
| | 1 | const builtin = @import("builtin"); |
| 1 | const std = @import("std"); | 2 | const std = @import("std"); |
| 2 | | 3 | |
| 3 | pub fn build(b: *std.Build) void { | 4 | pub fn build(b: *std.Build) void { |
| 4 | const test_step = b.step("test", "Test it"); | 5 | const test_step = b.step("test", "Test it"); |
| 5 | b.default_step = test_step; | 6 | b.default_step = test_step; |
| 6 | | 7 | |
| | 8 | if (builtin.os.tag == .windows) return error.SkipZigTest; // https://codeberg.org/ziglang/zig/issues/31564 |
| | 9 | |
| 7 | const target = b.standardTargetOptions(.{}); | 10 | const target = b.standardTargetOptions(.{}); |
| 8 | const optimize = b.standardOptimizeOption(.{}); | 11 | const optimize = b.standardOptimizeOption(.{}); |
| 9 | | 12 | |