Merge pull request #4910 from marler8997/fixEmscripten
build.zig: fix building raylib for emscripten
This commit is contained in:
commit
27a4fe8851
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ fn addExamples(
|
||||||
raylib: *std.Build.Step.Compile,
|
raylib: *std.Build.Step.Compile,
|
||||||
) !*std.Build.Step {
|
) !*std.Build.Step {
|
||||||
if (target.result.os.tag == .emscripten) {
|
if (target.result.os.tag == .emscripten) {
|
||||||
@panic("Emscripten building via Zig unsupported");
|
return &b.addFail("Emscripten building via Zig unsupported").step;
|
||||||
}
|
}
|
||||||
|
|
||||||
const all = b.step(module, "All " ++ module ++ " examples");
|
const all = b.step(module, "All " ++ module ++ " examples");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue