Not-Nik / raylib-zig

Manually tweaked, auto-generated raylib bindings for zig. https://github.com/raysan5/raylib
MIT License
691 stars 122 forks source link

Won't build with RGFW #159

Open menguele opened 1 month ago

menguele commented 1 month ago

It seems it won't compile against RGFW, even after changing zig.build it will still compile against GLFW my partial zig.build

    const raylib_dep = b.dependency("raylib-zig", .{
        .target = target,
        .optimize = optimize,
        .shared = true,
        .platform = .rgfw,
    });
HaxSam commented 1 day ago

I figured out what the problem is, look here: https://github.com/raysan5/raylib/pull/4358#issuecomment-2488242077 I already made a fix, hope the PR gets merged quick: https://github.com/raysan5/raylib/pull/4531