Inno setup, start

This commit is contained in:
Ruud
2012-05-15 23:21:14 +02:00
parent 6962cfc3f5
commit dbf0192c8e
+24
View File
@@ -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