I have a rather large project whose Installer is written using NSIS.
My problem is, that I cannot simply add all files to the installer file, because it will exceed the 2GB limit.
I also cannot leave my large files in a flat structure on the dvd and just copy them using the CopyFiles
command, because the total size of the directory structure will exceed 4.7GB.
So what I want to do now is to have my big files in a flat but compressed structure on the dvd and manually extract them to the install directory during installation. The structure on the dvd would look like this:
/ +--+ data | +-- <compressed files> +--setup.exe
Are there any convenient ways of doing this?
Thanks a lot in advance for any ideas.
/S /D=$instdir
)