|
| 1 | +; Script generated by the Inno Script Studio Wizard. |
| 2 | +; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! |
| 3 | + |
| 4 | +#define MyAppName "PTZ Controller" |
| 5 | +#define MyAppVersion "1.0.0.0" |
| 6 | +#define MyAppPublisher "Rodrigo Bueno" |
| 7 | +#define MyAppURL "https://rodrigobueno.dev" |
| 8 | +#define MyAppExeName "ViscaControllerPtz.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.) |
| 14 | +AppId={{6D877FEC-0CBD-455C-94FC-82EF19BA5BAD} |
| 15 | +AppName={#MyAppName} |
| 16 | +AppVersion={#MyAppVersion} |
| 17 | +;AppVerName={#MyAppName} {#MyAppVersion} |
| 18 | +AppPublisher={#MyAppPublisher} |
| 19 | +AppPublisherURL={#MyAppURL} |
| 20 | +AppSupportURL={#MyAppURL} |
| 21 | +AppUpdatesURL={#MyAppURL} |
| 22 | +DefaultDirName={pf}\{#MyAppName} |
| 23 | +DefaultGroupName={#MyAppName} |
| 24 | +OutputDir=C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\SETUP |
| 25 | +OutputBaseFilename=SetupPtzController |
| 26 | +SetupIconFile=C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\icon.ico |
| 27 | +Compression=lzma |
| 28 | +SolidCompression=yes |
| 29 | + |
| 30 | +[Languages] |
| 31 | +Name: "english"; MessagesFile: "compiler:Default.isl" |
| 32 | + |
| 33 | +[Tasks] |
| 34 | +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
| 35 | +Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1 |
| 36 | + |
| 37 | +[Files] |
| 38 | +Source: "C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\ViscaControllerPtz.exe"; DestDir: "{app}"; Flags: ignoreversion |
| 39 | +Source: "C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\ViscaControllerPtz.exe.config"; DestDir: "{app}"; Flags: ignoreversion |
| 40 | +Source: "C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\ViscaControllerPtz.pdb"; DestDir: "{app}"; Flags: ignoreversion |
| 41 | +Source: "C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\websocket-sharp.dll"; DestDir: "{app}"; Flags: ignoreversion |
| 42 | +Source: "C:\Projetos\ViscaControllerPtz\ViscaControllerPtz\bin\Release\websocket-sharp.xml"; DestDir: "{app}"; Flags: ignoreversion |
| 43 | +; NOTE: Don't use "Flags: ignoreversion" on any shared system files |
| 44 | + |
| 45 | +[Icons] |
| 46 | +Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
| 47 | +Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
| 48 | +Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon |
| 49 | + |
| 50 | +[Run] |
| 51 | +Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
0 commit comments