root/branches/workbranch/trunk/tools/installer/avpx.iss @ 525

Revision 525, 2.2 KB (checked in by sirlemonhead, 16 months ago)

- add Inno setup config file

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 "AvPx"
5#define MyAppVersion "1.0"
6#define MyAppPublisher "SirLemonhead"
7#define MyAppURL "http://homepage.eircom.net/~duncandsl/avp/"
8#define MyAppExeName "AvPx.exe"
9
10[Setup]
11; NOTE: The value of AppId uniquely identifies this application.
12; Do not use the same AppId value in installers for other applications.
13; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
14AppId={{6214FDEA-8101-434C-86C0-6CBF1380D025}
15AppName={#MyAppName}
16AppVersion={#MyAppVersion}
17;AppVerName={#MyAppName} {#MyAppVersion}
18AppPublisher={#MyAppPublisher}
19AppPublisherURL={#MyAppURL}
20AppSupportURL={#MyAppURL}
21AppUpdatesURL={#MyAppURL}
22DefaultDirName={pf}\Fox\Aliens versus Predator
23DefaultGroupName={#MyAppName}
24OutputBaseFilename=setup
25Compression=lzma
26SolidCompression=yes
27
28[Languages]
29Name: "english"; MessagesFile: "compiler:Default.isl"
30
31[Tasks]
32Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
33
34[Files]
35Source: "C:\Users\Barry\Desktop\avp_redist\AvPx.exe"; DestDir: "{app}"; Flags: ignoreversion
36Source: "C:\Users\Barry\Desktop\avp_redist\directx\*"; DestDir: "{app}\redist\directx\"; Flags: ignoreversion recursesubdirs createallsubdirs
37Source: "C:\Users\Barry\Desktop\avp_redist\vcredist_x86.exe"; DestDir: "{app}\redist\vc\"; Flags: ignoreversion
38Source: "C:\Users\Barry\Desktop\avp_redist\shaders\*"; DestDir: "{app}\shaders\"; Flags: ignoreversion recursesubdirs createallsubdirs
39Source: "C:\Users\Barry\Desktop\avp_redist\dlls\*"; DestDir: "{app}";
40; NOTE: Don't use "Flags: ignoreversion" on any shared system files
41
42[Icons]
43Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
44Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
45
46[Run]
47Filename: "{app}\redist\vc\vcredist_x86.exe"; Description: "Install Visual Studio 2010 SP1 Runtime";
48Filename: "{app}\redist\directx\DXSETUP.exe"; Description: "Install DirectX Runtimes";
49Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, "&", "&&")}}"; Flags: nowait postinstall skipifsilent
50
Note: See TracBrowser for help on using the browser.