Reputation: 2483
Is it possible to use as an output directory not only one location?
Something like this:
[Setup]
OutputDir=C:\MyProject; C:\Installers
Upvotes: 1
Views: 411
Reputation: 202282
No, you cannot.
If you are compiling the installer as a part of a larger build process, you can clone the output files as part of that.
See also: Run a [Code] or PowerShell script in Inno Setup compiler
One possible hack would be to execute some script in the background using preprocessor (as shown in the answer to the question above). And have the script watch for changes to the output file and copy it over to the other destination.
Upvotes: 1