Re: Embedding Lua files into libraries
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Embedding Lua files into libraries
- From: Patrick Rapin <toupie300@...>
- Date: Mon, 5 Dec 2011 17:35:18 +0100
> Are there other tools?
For all my Lua applications, I compress embedded sources using ZLib
(or BZip2 in one of them).
At application start, the code is uncompressed and fit to luaL_loadstring.
This permits to decrease the size of the executable and hide
(slightly) the source code.