How do I get the compiled code to use the local dlls, instead of trying to copy them to a temp
I keep getting the same errors. I would like to have the executable correctly use the dll available to it. IE raylib.dll
Which I am using lino's raylib 5.0 deno bindings
3 Replies
one solution i found was having a hard coded path globally added.
instead of
../blobs/
I believe Another way is to have the path be dynamic for no reason.
Ex:
Math.random()>0.5?"../thing.dll":"../thing.dll"
(Yeah its a useless operation but it defeats the inlining system)That's the compiler doing a temp folder. I'm not even sure I can control that