source: trunk/Instal/FioInfo.iss

Last change on this file was 11, checked in by chronos, 11 years ago
  • Přidáno: První instalační program pro Windows.
  • Opraveno: Při ukládání se nepoužívala cílová cesta.
File size: 2.4 KB
Line 
1; Script generated by the Inno Setup Script Wizard.
2; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
4#define MyAppName "FioInfo"
5#define MyAppVersion "1.0.0"
6#define MyAppPublisher "Jiøí Hajda"
7#define MyAppPublisherShort "Chronosoft"
8#define MyAppURL "http://svn.zdechov.net/trac/fioinfo"
9#define MyAppExeName "FioInfo.exe"
10#define MyAppDebugName "FioInfo.dbg"
11#define MyAppSubDir ".."
12
13[Setup]
14; NOTE: The value of AppId uniquely identifies this application.
15; Do not use the same AppId value in installers for other applications.
16; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
17AppId={{7B770981-CC5F-419C-B8C8-383DE3C60FEF}
18AppName={#MyAppName}
19AppVersion={#MyAppVersion}
20;AppVerName={#MyAppName} {#MyAppVersion}
21AppPublisher={#MyAppPublisher}
22AppPublisherURL={#MyAppURL}
23AppSupportURL={#MyAppURL}
24AppUpdatesURL={#MyAppURL}
25DefaultDirName={pf}\{#MyAppPublisherShort}\{#MyAppName}
26DefaultGroupName={#MyAppPublisherShort}\{#MyAppName}
27AllowNoIcons=yes
28OutputDir=.
29OutputBaseFilename=Instalace-{#MyAppName}-{#MyAppVersion}
30Compression=lzma
31SolidCompression=yes
32ChangesAssociations=yes
33
34[Languages]
35Name: "english"; MessagesFile: "compiler:Default.isl"
36Name: "czech"; MessagesFile: "compiler:Languages\Czech.isl"
37
38[Tasks]
39Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags:
40
41[Registry]
42Root: HKCU; Subkey: "Software\Chronosoft\FioInfo"; Flags: uninsdeletekey
43
44[Files]
45Source: "{#MyAppSubDir}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
46Source: "{#MyAppSubDir}\*.dll"; DestDir: "{app}"; Flags: ignoreversion
47;Source: "{#MyAppSubDir}\{#MyAppDebugName}"; DestDir: "{app}"; Flags: ignoreversion
48Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
49;Source: "{#MyAppSubDir}\Help\{#MyAppName}.chm"; DestDir: "{app}"; Flags: ignoreversion
50; NOTE: Don't use "Flags: ignoreversion" on any shared system files
51
52[Icons]
53Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
54;Name: "{group}\Nápovìda"; Filename: "{app}\{#MyAppName}.chm"
55Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
56Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
57
58[Run]
59Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, "&", "&&")}}"; Flags: nowait postinstall skipifsilent
60
Note: See TracBrowser for help on using the repository browser.