|
@@ -0,0 +1,35 @@
|
|
|
|
+#define MyAppName "Rembg"
|
|
|
|
+#define MyAppVersion "STABLE"
|
|
|
|
+#define MyAppPublisher "danielgatis"
|
|
|
|
+#define MyAppURL "https://github.com/danielgatis/rembg"
|
|
|
|
+#define MyAppExeName "rembg.exe"
|
|
|
|
+
|
|
|
|
+[Setup]
|
|
|
|
+AppId={{49AB7484-212F-4B31-A49F-533A480F3FD4}
|
|
|
|
+AppName={#MyAppName}
|
|
|
|
+AppVersion={#MyAppVersion}
|
|
|
|
+AppPublisher={#MyAppPublisher}
|
|
|
|
+AppPublisherURL={#MyAppURL}
|
|
|
|
+AppSupportURL={#MyAppURL}
|
|
|
|
+AppUpdatesURL={#MyAppURL}
|
|
|
|
+DefaultDirName={autopf}\{#MyAppName}
|
|
|
|
+DefaultGroupName={#MyAppName}
|
|
|
|
+DisableProgramGroupPage=yes
|
|
|
|
+OutputBaseFilename=setup
|
|
|
|
+Compression=lzma
|
|
|
|
+SolidCompression=yes
|
|
|
|
+WizardStyle=modern
|
|
|
|
+OutputDir=dist
|
|
|
|
+
|
|
|
|
+[Languages]
|
|
|
|
+Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
|
|
+
|
|
|
|
+[Files]
|
|
|
|
+Source: "{#SourcePath}dist\rembg\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
|
|
|
+Source: "{#SourcePath}dist\rembg\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
|
|
|
+
|
|
|
|
+[Icons]
|
|
|
|
+Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
|
+
|
|
|
|
+[Run]
|
|
|
|
+Filename: "{app}\{#MyAppExeName}"; Parameters: "--version"; Flags: runhidden
|