Skip to content

Commit

Permalink
Ajout d'un executable windows
Browse files Browse the repository at this point in the history
  • Loading branch information
IvinoDev committed Nov 14, 2022
1 parent 02edb3e commit 211d749
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Binary file added exe/tikodc.exe
Binary file not shown.
51 changes: 51 additions & 0 deletions exe/tikodc.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "TikODC"
#define MyAppVersion "1.0"
#define MyAppPublisher "Ivinodev"
#define MyAppURL "https://github.com/IvinoDev/TikODC"
#define MyAppExeName "tikodc.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={{18A04B4A-ED2A-40D8-8355-E638B90E69A0}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputDir=C:\Users\pc\Documents\VSCodeProjects\TikODC\exe
OutputBaseFilename=tikodc
SetupIconFile=C:\Users\pc\Documents\VSCodeProjects\TikODC\tikodc\assets\icon\launch.ico
Compression=lzma
SolidCompression=yes
WizardStyle=modern

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "french"; MessagesFile: "compiler:Languages\French.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "C:\Users\pc\Documents\VSCodeProjects\TikODC\tikodc\build\windows\runner\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\pc\Documents\VSCodeProjects\TikODC\tikodc\build\windows\runner\Release\flutter_windows.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\pc\Documents\VSCodeProjects\TikODC\tikodc\build\windows\runner\Release\data\*"; DestDir: "{app}\data"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

Binary file added tikodc/assets/icon/launch.ico
Binary file not shown.

0 comments on commit 211d749

Please sign in to comment.