I am creating an Eclipse RCP application.
I am following Joel's advice in the following article "Daily Builds are your friend":
http://www.joelonsoftware.com/articles/fog0000000023.html
So, I've written a nice build script that creates an Eclipse RCP product and that runs unit tests on the code. All results are then distributed to the developer's list (after some grumbling). Now my next step, I want it to create the setup package that I normally create manually using the inno setup compiler.
The question is, how would I get around creating this package automatically? I guess I can generate the inno setup file automatically from ant, and then invoke the compiler from the command line, but I don't know if this is possible.
Any tips for this task? Maybe any other setup application that can be used from ant?