lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I am searching a solution similiar to jar.
I want to pack both my and third party modules in one archive (lets call it lar), and then use it in another lua script/c program by

require "lar"
...
lar.execute("plugin.lar", "main.lua")

or

#include "lar.hpp"
...
lar_execute(L, "plugin.lar", "main.lua");

Is there any solutions?

--

e.v.e