lua-users home
lua-l archive

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


Diego Tostes <dtostes <at> gmail.com> writes:

> 
> 
> is it possible to generate executable from wxlua script?
> i already try srlua.exe but i get those erors:
> 
> 

Syntax for lua freeze

lua.exe DIR\wxluafreeze.lua DIR\wxluafreeze.exe luaProgram.lua 
executable.exe

wx.dll or any other packages you are using should be in your path or
the package.path.

require are not resolved by luafreeze this happend at run time.

given that aa.lua is a lua program
run aa.lua from a shell (if it run then)

run 

lua.exe DIR\wxluafreeze.lua DIR\wxluafreeze.exe aa.lua aa.exe

aa.exe should now run

Good luck
Andre