I wanted to mess about creating a CSpydr binding to Raylib which seems to work when using [link("raylib")] as recommended.
When building the executable it seems to work and linker finds the shared lib, however. When trying to run the binary we're met with error:
./main: error while loading shared libraries: libraylib.so.450: cannot open shared object file: No such file or directory
While the shared libs are also present in the same dir as the executable.
I wanted to mess about creating a CSpydr binding to Raylib which seems to work when using
[link("raylib")]
as recommended. When building the executable it seems to work and linker finds the shared lib, however. When trying to run the binary we're met with error:./main: error while loading shared libraries: libraylib.so.450: cannot open shared object file: No such file or directory
While the shared libs are also present in the same dir as the executable.Am I missing something here?