Skip to content

Commit

Permalink
Merge pull request #44 from hendriknielaender/windows-release-artifacts
Browse files Browse the repository at this point in the history
build: add windows artifacts
  • Loading branch information
hendriknielaender authored Jun 20, 2024
2 parents d53b2b4 + 1e54fd3 commit c58d563
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const CrossTargetInfo = struct {
name: []const u8,
};
// Semantic version of your application
const version = std.SemanticVersion{ .major = 0, .minor = 3, .patch = 3 };
const version = std.SemanticVersion{ .major = 0, .minor = 4, .patch = 1 };

const min_zig_string = "0.13.0";

Expand Down Expand Up @@ -69,6 +69,14 @@ pub fn build(b: *std.Build) void {
.cpu_arch = .aarch64,
.os_tag = .macos,
},
.{
.cpu_arch = .x86_64,
.os_tag = .windows,
},
.{
.cpu_arch = .x86,
.os_tag = .windows,
},
};

for (release_targets) |target_query| {
Expand Down

0 comments on commit c58d563

Please sign in to comment.