| 1 | const std = @import("std"); |
| 2 | |
| 3 | pub fn build(b: *std.Build) void { |
| 4 | const target = b.standardTargetOptions(.{}); |
| 5 | const mode = b.option(std.builtin.OptimizeMode, "mode", "") orelse .Debug; |
| 6 | const disable_llvm = b.option(bool, "disable_llvm", "use the non-llvm zig codegen") orelse false; |
| 7 | |
| 8 | _ = target; |
| 9 | _ = mode; |
| 10 | _ = disable_llvm; |
| 11 | |
| 12 | // this doesnt need tests since the consumers of this library do have tests |
| 13 | const test_step = b.step("test", "dummy test step to pass CI checks"); |
| 14 | _ = test_step; |
| 15 | } |