mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
Add simple Inno Setup installer script
This commit is contained in:
parent
0c36925b87
commit
5a363a957b
3 changed files with 26 additions and 3 deletions
20
Win32/inno_installer.iss
Normal file
20
Win32/inno_installer.iss
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
#define I2Pd_AppName "i2pd"
|
||||
#define I2Pd_ver "0.1"
|
||||
|
||||
[Setup]
|
||||
AppName={#I2Pd_AppName}
|
||||
AppVersion={#I2Pd_ver}
|
||||
DefaultDirName={pf}\I2Pd
|
||||
DefaultGroupName=I2Pd
|
||||
UninstallDisplayIcon={app}\I2Pd.exe
|
||||
Compression=lzma2
|
||||
SolidCompression=yes
|
||||
OutputDir=.
|
||||
OutputBaseFilename=setup_{#I2Pd_AppName}_v{#I2Pd_ver}
|
||||
|
||||
[Files]
|
||||
Source: "i2pd.exe"; DestDir: "{app}"
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\I2Pd"; Filename: "{app}\i2pd.exe"
|
Loading…
Add table
Add a link
Reference in a new issue