Browse Source

Merge pull request #4910 from marler8997/fixEmscripten

build.zig: fix building raylib for emscripten
Ray 3 months ago
parent
commit
27a4fe8851
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.zig

+ 1 - 1
build.zig

@@ -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");