Re: generate executable from wxlua script
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: generate executable from wxlua script
 
- From: Andre Arpin <arpin@...>
 
- Date: 2015年6月14日 12:06:43 +0000 (UTC)
 
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