I have an installer, which contains a 32-bit and 64-bit dll. On 64-bit systems I want to install both versions, on 32-bit systems, just the 32-bit version.
My [Files]
section is as follows:
[Files]
Source: "C:\Users\..\x64\my.dll"; DestDir: "{pf64}\{#MyPath}"; Check: IsWin64
Source: "C:\Users\..\my.dll"; DestDir: "{pf32}\{#MyPath}"
This all works fine, except that if I override the install directory in the "Select Destination Location" page
- Firstly, it only let's me override the
pf32
path - Secondly, nothing gets installed if I override the install directory
Is there a way to set up the installer so that the "Select Destination Location" gets presented twice, once for the 32-bit location and once for the 64-bit one?