source: tags/1.3.1/Install/win/C-evo.iss

Last change on this file was 411, checked in by chronos, 3 years ago
  • Fixed: Contact page link.
  • Fixed: Styling of settings edit boxes under Windows.
  • Modified: Updated Windows installer scripts.
File size: 3.1 KB
Line 
1#include "Common.iss"
2
3[Setup]
4; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
5; done in "64-bit mode" on x64, meaning it should use the native
6; 64-bit Program Files directory and the 64-bit view of the registry.
7; On all other architectures it will install in "32-bit mode".
8ArchitecturesInstallIn64BitMode=x64
9; Note: We don't set ProcessorsAllowed because we want this
10; installation to run on all architectures (including Itanium,
11; since it's capable of running 32-bit code too).
12OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}
13
14[Components]
15Name: "ai\ai_uo"; Description: "AI_UO"; Types: full
16Name: "ai\capital_ai"; Description: "Capital AI"; Types: full
17Name: "ai\aias"; Description: "AIAS"; Types: full
18Name: "ai\civseed"; Description: "Civilisation Seed AI"; Types: full
19Name: "ai\crystal"; Description: "Crystal"; Types: full
20Name: "ai\kiai"; Description: "KIAI"; Types: full
21Name: "ai\liberator"; Description: "Liberator"; Types: full
22Name: "ai\seti"; Description: "SETI"; Types: full
23Name: "ai\shah"; Description: "Shah"; Types: full
24
25[Files]
26Source: "{#MyAppSubDir}\lib\x86_64-win64-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Components: main; Check: Is64BitInstallMode
27Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Components: main; Check: not Is64BitInstallMode
28Source: "{#MyAppSubDir}\AI\StdAI\lib\x86_64-win64-Release\StdAI.dll"; DestDir: "{app}\AI\StdAI"; DestName: "StdAI-win64.dll"; Flags: ignoreversion; Components: ai\stdai; Check: Is64BitInstallMode
29Source: "{#MyAppSubDir}\AI\StdAI\lib\i386-win32-Release\StdAI.dll"; DestDir: "{app}\AI\StdAI"; DestName: "StdAI-win32.dll"; Flags: ignoreversion; Components: ai\stdai; Check: not Is64BitInstallMode
30Source: "{#MyAppSubDir}\AI\AI_UO\*.*"; DestDir: "{app}\AI\AI_UO"; Flags: ignoreversion; Components: ai\ai_uo; Check: not Is64BitInstallMode
31Source: "{#MyAppSubDir}\AI\AIAS\*.*"; DestDir: "{app}\AI\AIAS"; Flags: ignoreversion; Components: ai\aias; Check: not Is64BitInstallMode
32Source: "{#MyAppSubDir}\AI\Capital AI\*.*"; DestDir: "{app}\AI\Capital AI"; Flags: ignoreversion; Components: ai\capital_ai; Check: not Is64BitInstallMode
33Source: "{#MyAppSubDir}\AI\Civilisation Seed AI\*.*"; DestDir: "{app}\AI\Civilisation Seed AI"; Flags: ignoreversion; Components: ai\civseed; Check: not Is64BitInstallMode
34Source: "{#MyAppSubDir}\AI\Crystal\*.*"; DestDir: "{app}\AI\Crystal"; Flags: ignoreversion; Components: ai\crystal; Check: not Is64BitInstallMode
35Source: "{#MyAppSubDir}\AI\KIAI\*.*"; DestDir: "{app}\AI\KIAI"; Flags: ignoreversion; Components: ai\kiai; Check: not Is64BitInstallMode
36Source: "{#MyAppSubDir}\AI\Liberator\*.*"; DestDir: "{app}\AI\Liberator"; Flags: ignoreversion; Components: ai\liberator; Check: not Is64BitInstallMode
37Source: "{#MyAppSubDir}\AI\SETI\*.*"; DestDir: "{app}\AI\SETI"; Flags: ignoreversion; Components: ai\seti; Check: not Is64BitInstallMode
38Source: "{#MyAppSubDir}\AI\Shah\*.*"; DestDir: "{app}\AI\Shah"; Flags: ignoreversion; Components: ai\shah; Check: not Is64BitInstallMode
Note: See TracBrowser for help on using the repository browser.