Let suppose I have custom.dll and I want to embed it in my app.exe.
Note that I have several .lua files in addition to main.lua in same build folder.
Currently keeping custom.dll as external file I'm using something like:
rtc -w -i .\myapp.ico -o myapp.exe -lnet -lwebview -ljson -lsysutils -lc main.lua .
What would be the rtc command syntax to embed custom.dll as well ?
Which path I would have to use to load the DLL from Lua code?