I'm struggling to find how to do this properly. I have a game binary using raylib built as a shared library. My zig-out looks like the following when I build:
zig-out/
bin/
// game_binary
lib/
// libraylib.so
include/
// headers
when I cd into bin/ and run ./game_binary, I get the error: error while loading shared libraries: libraylib.so: cannot open shared object file: No such file or directory, so I'm thinking I just need to set the rpath correctly. what's the correct way to do this in build.zig?