Hello,
When I started this project, I didn't find a solution which perfectly fitted my needs.
If I understand well how srlua works, the advantages I see for the luawrapper approach are :
* lua dependencies are embedded too, not only the C ones, if I recall well for example, luasocket comes with both C and lua parts. And I had a dependency on it in my project.
* the lua script is appended to the main executable, while this approach works, if one wants to strip the executable for any reason, things will break. Again, this was mandatory in my case.
On the other hand, srlua doesn't rely on the elf format thus it is more portable. As I don't know a thing about the windows platform, I'm not able to overcome this limitation.