Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • d68d2dfdb6ffe97d68d57dcc88d3cf031a8ca88f
  • master default protected
  • develop
  • desktop
  • 3d
  • pip
  • build/2.0.6.1
  • build/2.0.6
  • build/2.0.5
  • build/2.0.4
  • build/2.0.3
  • build/2.0.1
  • build/2.0.0.pre2
  • build/2.0.0.pre1
14 results

installer.iss

Blame
  • installer.iss 797 B
    #define MyAppName "CouchPotato"
    #define MyAppVer "2.0.0.pre1"
    
    [Setup]
    AppName={#MyAppName}
    AppVersion=2
    AppVerName={#MyAppName}
    DefaultDirName={pf}\{#MyAppName}
    DisableProgramGroupPage=yes
    UninstallDisplayIcon=./icon.ico
    SetupIconFile=./icon.ico
    OutputDir=./dist
    OutputBaseFilename={#MyAppName}-{#MyAppVer}.win32.installer
    AppPublisher=Your Mom
    AppPublisherURL=http://couchpota.to
    
    [Files]
    Source: "./dist/{#MyAppName}-{#MyAppVer}.win32/*"; Flags: recursesubdirs; DestDir: "{app}"
    
    [Icons]
    Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"
    Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"; Tasks: startup
    
    [Tasks]
    Name: "startup"; Description: "Run {#MyAppName} at startup"; Flags: unchecked
    
    [UninstallDelete]
    Type: filesandordirs; Name: "{app}\*.*"