Add build.* and emcc.zig to the zon paths (#83)

As per some info found through https://github.com/ziglang/zig/issues/18282,
this is apparently necessary to use this library as a dependency.

Co-authored-by: Drum Ogilvie <me@daogilvie.com>
This commit is contained in:
Nikolas 2024-04-28 22:18:57 +02:00 committed by GitHub
parent 57d3f9ef95
commit 93934557b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,5 +8,5 @@
},
},
.minimum_zig_version = "0.12.0",
.paths = .{ "lib/raylib.zig", "lib/raylib-ext.zig", "lib/raymath.zig", "lib/raymath-ext.zig", "lib/rlgl.zig", "lib/rlgl-ext.zig" },
.paths = .{ "build.zig", "build.zig.zon", "emcc.zig", "lib/raylib.zig", "lib/raylib-ext.zig", "lib/raymath.zig", "lib/raymath-ext.zig", "lib/rlgl.zig", "lib/rlgl-ext.zig" },
}