Skip to content

Commit

Permalink
build.zig: update for 0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Jun 9, 2024
1 parent e58e5a7 commit 6109283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ pub fn build(b: *std.Build) !void {

const lib = b.addStaticLibrary(.{
.name = "htmlentities.zig",
.root_source_file = .{ .path = "src/main.zig" },
.root_source_file = b.path("src/main.zig"),
.optimize = optimize,
.target = target,
});
b.installArtifact(lib);

var main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
.root_source_file = b.path("src/main.zig"),
.optimize = optimize,
});

Expand Down

0 comments on commit 6109283

Please sign in to comment.