Ignore:
Timestamp:
Jul 14, 2016, 2:06:55 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Installer now contains 32-bit and 64-bit version.
  • Added: Install also openssl libraries to support https protocol.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Install/AcronymDecoder.iss

    r36 r43  
    44#define MyAppName "Acronym Decoder"
    55#define MyAppNameShort "AcronymDecoder"
    6 #define MyAppVersion "1.0.0"
     6#define MyAppVersion "1.0.1"
    77#define MyAppPublisher "Chronosoft"
    88#define MyAppPublisherShort "Chronosoft"
     
    3232SolidCompression=yes
    3333ChangesAssociations=yes
     34; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
     35; done in "64-bit mode" on x64, meaning it should use the native
     36; 64-bit Program Files directory and the 64-bit view of the registry.
     37; On all other architectures it will install in "32-bit mode".
     38ArchitecturesInstallIn64BitMode=x64
     39; Note: We don't set ProcessorsAllowed because we want this
     40; installation to run on all architectures (including Itanium,
     41; since it's capable of running 32-bit code too).
    3442
    3543[Languages]
     
    5159
    5260[Files]
    53 Source: "{#MyAppSubDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
    54 ;Source: "{#MyAppSubDir}\{#MyAppDebugName}"; DestDir: "{app}"; Flags: ignoreversion
     61Source: "{#MyAppSubDir}\lib\x86_64-win64\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode
     62Source: "{#MyAppSubDir}\lib\i386-win32\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode
     63Source: "{#MyAppSubDir}\libeay32.dll"; DestDir: "{app}"; Flags: ignoreversion
     64Source: "{#MyAppSubDir}\ssleay32.dll"; DestDir: "{app}"; Flags: ignoreversion
    5565Source: "{#MyAppSubDir}\Example acronyms.adp"; DestDir: "{app}"; Flags: ignoreversion
    5666Source: "{#MyAppSubDir}\Release notes.txt"; DestDir: "{app}"; Flags: ignoreversion
    5767Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
     68
    5869
    5970[Icons]
Note: See TracChangeset for help on using the changeset viewer.