Skip to content

Commit

Permalink
add 0.14.0-dev compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoff-it committed Jul 24, 2024
1 parent 8d541d7 commit 032984e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const std = @import("std");
const FailStep = @import("FailStep.zig");
const builtin = @import("builtin");
const FailStep = if (builtin.zig_version.minor == 13) @import("FailStep.zig") else std.Build.Step.Fail;

pub fn build(b: *std.Build) !void {
const target = b.standardTargetOptions(.{});
Expand Down

0 comments on commit 032984e

Please sign in to comment.