So, I've made a combo installer which should install one set of files if ran on 64-bit machine, and another if it's run on 32-bit machine.
I'm currently on a 64-bit machine. So is there a command line argument or any other way to simulate running in 32-bit mode? I just wanna check if it works as intended.
My code looks like this:
[Setup]
...
ArchitecturesInstallIn64BitMode=x64
[Files]
Source: "Win64Data\filename.ext"; DestDir: "{app}"; Flags: ignoreversion; Check: IsWin64
Source: "Win32Data\filename.ext"; DestDir: "{app}"; Flags: ignoreversion; Check: not IsWin64