mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 20:17:28 +00:00
LazyPath.path deprecated in zig 0.12, removed in 0.13 (#89)
LazyPath.path deprecated in zig 0.12, removed in 0.13, using b.path() instead Co-authored-by: CosmicBagel <>
This commit is contained in:
parent
b98527d062
commit
28f9a051e4
2
emcc.zig
2
emcc.zig
@ -42,7 +42,7 @@ pub fn compileForEmscripten(
|
|||||||
// The project is built as a library and linked later.
|
// The project is built as a library and linked later.
|
||||||
const exe_lib = b.addStaticLibrary(.{
|
const exe_lib = b.addStaticLibrary(.{
|
||||||
.name = name,
|
.name = name,
|
||||||
.root_source_file = .{ .path = root_source_file },
|
.root_source_file = b.path(root_source_file),
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user