Browse Source

Inno setup, start

tags/build/2.0.0.pre1
Ruud 13 years ago
parent
commit
6962f441e6
  1. 24
      installer.iss

24
installer.iss

@ -0,0 +1,24 @@
#define MyAppName "CouchPotato"
#define MyAppVer GetFileVersion("./dist/"+MyAppName+".exe")
[Setup]
AppName={#MyAppName}
AppVersion={#MyAppVer}
AppVerName={#MyAppName}
DefaultDirName={pf}\{#MyAppName}
DisableProgramGroupPage=yes
UninstallDisplayIcon={app}\icon.ico
OutputDir=./dist
OutputBaseFilename={#MyAppName}-{#MyAppVer}.win32.installer
AppPublisher=Your Mom
AppPublisherURL=http://couchpota.to
[Files]
Source: "./*"; DestDir: "{app}"
[Icons]
Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"
Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"
[Tasks]
Name: "startup"; Description: "Run {#MyAppName} at startup"; Flags: unchecked
Loading…
Cancel
Save