Reputation: 365
I've been working on a XULRunner based program for quite long. Since XULRunner isn't actively supported anymore, I kept running my program via Firefox with its -app
switch. Now I'd like to build a standalone program, with an installer to distribute, but I cannot find any relating information. Is that even possible?
Upvotes: 4
Views: 140
Reputation: 56
What you want to do is really pretty much the original use case. I've only personally seen it done with NSIS, but also Inno is mentioned in the documentation.
Here are some helpful links...
Deploying XULRunner Gives a high level overview.
The short version is that you need to bring your own installer solution, but one example is detailed here: Windows Into setup installer
Or, using NSIS, this stub: Sample NSIS script for XULRunner
Upvotes: 2