Skip to content

Commit ddb3860

Browse files
committed
Ajout des fichiers pour ino setup.
1 parent 32cb39e commit ddb3860

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

icon.ico

361 KB
Binary file not shown.

ino_setup.iss

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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 "SiviCNCDriver"
5+
#define MyAppVersion "0.1.2"
6+
#define MyAppPublisher "Sivigik"
7+
#define MyAppURL "http://sivigik.com/"
8+
#define MyAppExeName "siviCNCDriver.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={{693E75BE-4908-4D1D-88E8-4E2A56766A13}
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+
DisableProgramGroupPage=yes
24+
LicenseFile=LICENSE
25+
OutputDir=build
26+
OutputBaseFilename=setupSiviCNCDriver
27+
SetupIconFile=icon.ico
28+
Compression=lzma
29+
SolidCompression=yes
30+
31+
[Languages]
32+
Name: "english"; MessagesFile: "compiler:Default.isl"
33+
Name: "french"; MessagesFile: "compiler:Languages\French.isl"
34+
35+
[Tasks]
36+
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
37+
38+
[Files]
39+
Source: "build\exe.win32-3.6\siviCNCDriver.exe"; DestDir: "{app}"; Flags: ignoreversion
40+
Source: "build\exe.win32-3.6\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
41+
Source: "LICENSE"; DestDir: "{app}"; Flags: ignoreversion
42+
Source: "icon.ico"; DestDir: "{app}"; Flags: ignoreversion
43+
Source: "README.rst"; DestDir: "{app}"; Flags: ignoreversion isreadme
44+
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
45+
46+
[Icons]
47+
Name: "{commonprograms}\{#MyAppName}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}";IconFilename: "{app}\icon.ico"
48+
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}";IconFilename: "{app}\myicon.ico"; Tasks: desktopicon
49+
Name: "{commonprograms}\{#MyAppName}\Uninstall SiviCNCDriver"; Filename: "{uninstallexe}"
50+
51+
[Run]
52+
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
53+

0 commit comments

Comments
 (0)