Skip to content

Commit 86947a4

Browse files
authored
Merge pull request #1 from floatdrop/update-build-zig-to-0.15
fix(build.zig): changes for zig 0.15
2 parents 911b502 + 5c31776 commit 86947a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub fn build(b: *std.Build) void {
7878
// Now, we will create a static library based on the module we created above.
7979
// This creates a `std.Build.Step.Compile`, which is the build step responsible
8080
// for actually invoking the compiler.
81-
const lib = b.addStaticLibrary(.{
81+
const lib = b.addLibrary(.{
8282
.name = "hparse",
8383
.root_module = lib_mod,
8484
});

0 commit comments

Comments
 (0)