Set right name for web build in zig example

This commit is contained in:
haxsam 2026-04-17 10:48:51 +02:00
parent e753dea807
commit 98a40d736d
No known key found for this signature in database

View File

@ -36,7 +36,7 @@ pub fn build(b: *std.Build) !void {
if (target.query.os_tag == .emscripten) {
const emsdk = rl.emsdk;
const wasm = b.addLibrary(.{
.name = "raylib_testing",
.name = "core_basic_window_web",
.root_module = exe_mod,
});