[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Distributing Lua packages to Windows machines
- From: David Krause <dkrause@...>
- Date: Tue, 03 Mar 2015 13:23:32 +0100
Not Lua:
In my opinion the best way to deploy software on windows is with an installer.
I would suggest to take a look at NSIS ( http://nsis.sourceforge.net/Main_Page ).
With NSIS you could pack everything nicely into one file, install everything silently and even generate (installable) patch diffs with vpatch
( http://nsis.sourceforge.net/VPatch_plug-in )
The "downside" is that you still have the to deploy the whole directory (but create nice desktop links to start your application).
David Krause