What's the best way to distribute Lua and libraries?
Posted
by SJML
on Stack Overflow
See other posts from Stack Overflow
or by SJML
Published on 2010-06-17T21:27:43Z
Indexed on
2010/06/18
1:33 UTC
Read the original article
Hit count: 185
I'm looking at moving a program that currently embeds a Python interpreter to use Lua. With Python it's fairly easy to use modulefinder
, compileall
, and zipfile
to make a nice tidy zip containing all the external libraries used.
Does Lua have the ability to bundle up its libraries like that, or is there some better best practice for distributing programs that embed Lua?
© Stack Overflow or respective owner