123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- ; Script generated by the Inno Script Studio Wizard.
- ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
- #define MyAppName "Qt Visual Graph Editor"
- #define MyAppVersion "0.6.3 (32 bit)"
- #define MyAppPublisher "Ars L. Masiuk"
- #define MyAppURL "https://sourceforge.net/projects/qvge"
- #define MyAppExeName "qvgeapp.exe"
- [Setup]
- ; NOTE: The value of AppId uniquely identifies this application.
- ; Do not use the same AppId value in installers for other applications.
- ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
- AppId={{D5881152-81E2-48FB-A16C-1B7CA4364730}
- AppName={#MyAppName}
- AppVersion={#MyAppVersion}
- ;AppVerName={#MyAppName} {#MyAppVersion}
- AppPublisher={#MyAppPublisher}
- AppPublisherURL={#MyAppURL}
- AppSupportURL={#MyAppURL}
- AppUpdatesURL={#MyAppURL}
- DefaultGroupName={#MyAppName} {#MyAppVersion}
- AllowNoIcons=yes
- LicenseFile=..\..\LICENSE
- SetupIconFile=icon.ico
- Compression=lzma
- SolidCompression=yes
- OutputDir=..\..\..\..\_releases\win32
- OutputBaseFilename=qvge-0.6.3-setup-32bit
- DefaultDirName={pf}\QVGE
- [Languages]
- Name: "english"; MessagesFile: "compiler:Default.isl"
- Name: "german"; MessagesFile: "compiler:Languages\German.isl"
- Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
- Name: "ukrainian"; MessagesFile: "compiler:Languages\Ukrainian.isl"
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
- Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1
- [Files]
- Source: "bin32\*"; DestDir: "{app}\bin"; Flags: ignoreversion recursesubdirs createallsubdirs
- ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
- ;Source: "vcredist_x86.exe"; DestDir: {tmp}; Flags: deleteafterinstall
- Source: "..\..\LICENSE"; DestDir: "{app}"
- Source: "..\..\CHANGES"; DestDir: "{app}"
- Source: "..\..\README.md"; DestDir: "{app}"
- Source: "..\..\examples\*"; DestDir: "{app}\examples"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\3rdParty\tools\*"; DestDir: "{app}\tools"; Flags: ignoreversion recursesubdirs createallsubdirs
- [Icons]
- Name: "{group}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"
- Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
- Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Tasks: desktopicon
- Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Tasks: quicklaunchicon
- Name: "{group}\{cm:UninstallProgram, {#MyAppName}}"; Filename: "{uninstallexe}"
- [Run]
- ; Filename: {tmp}\vcredist_x86.exe; \
- Parameters: "/q /passive /Q:a /c:""msiexec /q /i vcredist.msi"""; \
- StatusMsg: "Installing VC++ 2015 Redistributables..."
- Filename: "{app}\bin\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|