summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--build.zig14
1 files changed, 12 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 3b78513..8033831 100644
--- a/build.zig
+++ b/build.zig
@@ -97,9 +97,19 @@ const ci_targets = switch (builtin.target.cpu.arch) {
97 // .bundled = true, 97 // .bundled = true,
98 // }, 98 // },
99 }, 99 },
100 else => unreachable, 100 else => [_]TestTarget{
101 TestTarget{
102 .target = .{},
103 .bundled = false,
104 },
105 },
106 },
107 else => [_]TestTarget{
108 TestTarget{
109 .target = .{},
110 .bundled = false,
111 },
101 }, 112 },
102 else => unreachable,
103}; 113};
104 114
105const all_test_targets = switch (builtin.target.cpu.arch) { 115const all_test_targets = switch (builtin.target.cpu.arch) {