From dbf0192c8e10b37716c640a4bfa98878ec728989 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 21 Feb 2012 18:50:34 +0100 Subject: [PATCH] Inno setup, start --- installer.iss | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 installer.iss diff --git a/installer.iss b/installer.iss new file mode 100644 index 00000000..7c8b0886 --- /dev/null +++ b/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 \ No newline at end of file