Quote:
Originally Posted by MSG
You're mistaken: You cannot make an installer that only contains file XYZ if some condition is met. If you need it installed at ANY point, the installer MUST have it compressed inside.
What you probably want is this:
${If} (some condition here)
File Yourfile.ext
${EndIf}
The above will always compile Yourfile into the installer, but it will only be extracted (at runtime) if the condition is met.
Or if your problem is that you want to include files dynamically (to make different installers depending on what files you have on your compiling PC), you'll probably have to use this:
File YourDynamicFolder\*.*
|
No, my question is that the files to be extracted do not exist before installation and they will be generated during installation. Is there any way I can do that? Thanks.